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

What are the constraints available in sql?

0 Answers  


What is rename command in sql?

0 Answers  


Is truncate ddl or dml?

0 Answers  


What is group by in sql?

0 Answers  


HOW TO TUNE ORACLE SQL QUERIES GIVE ME STEP BY SREP

1 Answers   TCS,


What is bulk collect in pl sql?

0 Answers  


What is crud sql?

0 Answers  


What are pl sql procedures?

0 Answers  


What are the types of join and explain each?

0 Answers  


How do I partition a table in sql?

0 Answers  


What is procedure function?

0 Answers  


how can stop the sequence with mention the max value and with out mention the max value

1 Answers   Zensar,


Categories