SELECT ROUND(TRUNC(MOD(1600,10),-1),2)
FROM dual;
Answer Posted / girija shankar dash
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 ? | 127 Yes | 5 No |
Post New Answer View All Answers
How do you declare a user-defined exception?
What is the difference between syntax error and runtime error?
Is inner join same as self join?
How to disable a trigger name update_salary?
What is the difference between count 1 and count (*) in a sql query?
How to move files from one directory to another in pl sql?
What is plpgsql language?
how to install mysql? : Sql dba
What program will open a mdb file?
How do I view a view in sql?
Which is faster subquery or join?
What is cursor in pl sql with examples?
What does joining a thread mean?
What are the differences between implicit and explicit cursors?
What is the difference between function and procedure in pl/sql?