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 a dirty read sql?
what is the difference between truncate and drop statements? : Sql dba
How do I upgrade sql?
Can you have more than one key in a database?
what is 'mysqlcheck'? : Sql dba
What is using in sql?
How does cross join work?
What is normalisation and its types?
Explain what is a database?
What is data abstraction in sql?
How do you change a value in sql?
What are sql functions? Describe the different types of sql functions?
What is a nested table in word?
What is right join sql?
can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible? : Sql dba