SELECT ROUND(TRUNC(MOD(1600,10),-1),2)
FROM dual;
Answers were Sorted based on User's Feedback
ANS:
SELECT ROUND(TRUNC(MOD(1600,10),-1),2) as "result"
FROM dual;
Result
------
0
Explanation:
-----------
MOD(1600,10)---> 0
TRUNC(0,-1)----> 0
ROUND(0,2)-----> 0
Is This Answer Correct ? | 121 Yes | 5 No |
Answer / sathish p
First mod(1600,10) output is 0...
So total output ZERO only..
Is This Answer Correct ? | 10 Yes | 2 No |
what is the difference between delete and truncate commands? : Sql dba
Begin For j in 4403201000 .. 4403202000 Loop If mod (j, 100) = 0 then Dbms_output.put_line (j); End if; End loop; End; what will be the output of this question
how to sort records in sql?
How many LONG columns are allowed in a table?
What is a call statement? Explain with an example.
What is secondary key?
How to select random rows from a table?
Can variables be used in sql statements?
what is acid property in database? : Sql dba
What is trigger in pl sql?
How delete a row in sql?
What is a relationship and what are they?