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 is bitemporal narrowing?

0 Answers  


Why join is faster than subquery?

0 Answers  


Give the structure of the function ?

2 Answers  


Can a foreign key have a different name?

0 Answers  


list out some tools through which we can draw e-r diagrams for mysql. : Sql dba

0 Answers  






What is an oracle stored procedure?

0 Answers  


what is denormalization. : Sql dba

0 Answers  


Is vs as in pl sql?

0 Answers  


What is mutating trigger?

0 Answers  


How is pl sql different from sql?

0 Answers  


What is relationship? How many types of relationship are there?

0 Answers  


how to find the second highest salary from emp table?

211 Answers   CIS, Cognizant, Cosmosoft, DAS, EDS, GreenTech, HOV Services, IBM, Infosys, National Institute of Science and Technology, Patni, Persistent, Polaris, TCS, Wipro, Yardi, Zensar,


Categories