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 |
What are the constraints available in sql?
What is rename command in sql?
Is truncate ddl or dml?
What is group by in sql?
HOW TO TUNE ORACLE SQL QUERIES GIVE ME STEP BY SREP
What is bulk collect in pl sql?
What is crud sql?
What are pl sql procedures?
What are the types of join and explain each?
How do I partition a table in sql?
What is procedure function?
how can stop the sequence with mention the max value and with out mention the max value