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 |
What is the use of partition by in sql?
What is the diff between Truncate table / delete <table name> purge
a procedure one in two out parameters i am waiting it in a sql query can i get the output
Why cross join is used?
What schema means?
If a procedure within a package is invalidated whether the entire package will be invalid and has to be recompiled again?
How packaged procedures and functions are called from the following?
What are the topics in pl sql?
How to return multiple records from procedure?
can we write stored function in out parameters? how to call through select statement? how to written more than one value plz give the exmple?
What are primary key and foreign key and how they work?
What is compilation error in pl 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)