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 difference between rollback and rollback to statements?
What is triggering circuit?
In a table only one column how to update rows
what are the differences between char and varchar? : Sql dba
what is the need of the cursor attribute notfound..(because using found attribute we can complete the task......found + negation operator = not found )
What is not null in sql?
i have one table with accounts and amounts as colums.accounts with columns c and d. and amounts with values 1000,2000,3000 for c and 4000,5000,8000 for d.i need to find the sum of these accounts c and d individually and find the differences between their sum using one select statement.
What are synonyms in sql?
what are the features and advantages of object-oriented programming? : Sql dba
how to fetch alternate records from a table? : Sql dba
what are the t string functions available in tsql? : Transact sql
What does subquery mean in 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)