Whate is use of MOD function in pl/sql.

Answers were Sorted based on User's Feedback



Whate is use of MOD function in pl/sql...

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

Whate is use of MOD function in pl/sql...

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

Whate is use of MOD function in pl/sql...

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

Post New Answer

More SQL PLSQL Interview Questions

Which sql statement is used to return only different values?

0 Answers  


What are the datatypes available in pl/sql ?

0 Answers  


what is sql and plsql

6 Answers  


How to create your own reports in sql developer?

0 Answers  


What is the primary use of normalization?

0 Answers  






Which are the most commonly used sql joins?

1 Answers  


What is where clause in sql?

0 Answers  


How to get each name only once from an employee table?

0 Answers  


When is a declare statement required?

0 Answers  


what is the use of anchoring object? what r the difference between anchoring object & enclosing object? can any one tell me all the details?

0 Answers  


Is join an inner join?

0 Answers  


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?

1 Answers   Cognizant,


Categories