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 ? | 127 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 |
Define implicit and explicit cursors.
How does cross join work?
What is union and union all keyword in sql?
What is a pragma statement?
How do I view a view in sql?
what is collation? : Sql dba
What operators deal with null?
What is an invalid partition table?
how to convert dates to character strings? : Sql dba
Which is better join or subquery?
How to execute multiple sql statements in a single annonymous block irrespective of the sql statement result?
What is the default isolation level in sql server? : Transact sql
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)