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
What is mutating trigger?
What is query execution plan in sql?
Can we call procedure in select statement?
What are the different types of dbmss?
what are the features and advantages of object-oriented programming? : Sql dba
Can a commit statement be executed as part of a trigger?
what is 'trigger' in sql? : Sql dba
How can I change database name in sql?
What is the difference between microsoft access and sql server?
Can we connect to postgresql using sql developer?
explain the difference between delete , truncate and drop commands? : Sql dba
What is ttitle and btitle?
What are the different ddl commands in sql?
Is pl sql and postgresql same?
What are the different types of joins in sql?