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 ? | 126 Yes | 5 No |
Post New Answer View All Answers
Can we write dml inside a function in sql server?
How many clustered indexes can you have?
What is sql resultset?
What is sqlservr exe?
What is the size of partition table?
Is sql a dbms?
What are the different tcl commands in sql?
Enlist the data types that can be used in pl/sql?
what is the difference between clustered and non clustered index in sql? : Sql dba
What is error ora-12154: tns:could not resolve the connect identifier specified?
What is sqlexception in java?
What are three advantages to using sql?
Which is faster count (*) or count 1?
what is dbms? : Sql dba
What is trigger explain it?