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 tables in sql?
What is trigger in flip flop?
What is union, minus and interact commands?
Is record in pl sql?
Why is sql important?
what is the difernece between named and anonymous pl/sql blocks??
Which is faster subquery or join?
What is a mutating table and a constraining table?
How can we implement rollback or commit statement in a trigger?
What is delimiter in pl sql?
write a query to delete similar records in particular fields(columns) in different tables
what is Difference between Having and Where clause?