Whate is use of MOD function in pl/sql.
Answers were Sorted based on User's Feedback
Answer / prabu t
Same as other languages, returns remainder.
eg. select mod(5,3) as remainder from dual;
output
remainder
---------
2
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / dipti
it returns the reminder.
eg:-select mod(10,5) as modulus from dual;
o/p-:
modulus
------------
0
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / srinivas
It Displays the remainder.
Ex:
select mod(10,5),mod(5,2) from dual;
O/P: mod(10,5) mod(5,2)
0 1
Is This Answer Correct ? | 2 Yes | 0 No |
Which sql statement is used to return only different values?
What are the datatypes available in pl/sql ?
what is sql and plsql
How to create your own reports in sql developer?
What is the primary use of normalization?
Which are the most commonly used sql joins?
What is where clause in sql?
How to get each name only once from an employee table?
When is a declare statement required?
what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?
Is join an inner join?
There is a table, In one column it has implemented a index, but the index is disturbed by the regular dml statements.. but still we need to keep the index. how it is possible?