https://randomsrsolutions.blogspot.com/2018/05/using-mod-in-plsql-query.html
The MOD Function Finds the Remainder of Value1 by Value2
Note: The MOD Function is often used to determine if a value is odd or Even
select
MOD(3,2),
MOD(10,2),
MOD(15,3),
MOD(52,6),
MOD(230,5)
from dual;
MOD(3,2) MOD(10,2) MOD(15,3) MOD(52,6) MOD(230,5)
1 0 0 4 0
Subscribe to:
Post Comments (Atom)
XLA to GL Link
https://plsqlquery.blogspot.com/2025/12/xla-to-gl-link.html SELECT acr.cash_receipt_id, acr.receipt_number, ...
-
https://plsqlquery.blogspot.com/2018/05/using-outer-joins-in-plsql-query.html We use Outer Join when mismatched Values to be displayed ...
-
https://plsqlquery.blogspot.com/2018/05/using-trim-in-plsql-query.html The Oracle/PLSQL TRIM function removes all specified characters eit...
-
https://randomsrsolutions.blogspot.com/2018/05/using-trunc-function-with-numbers-in.html The TRUNC function Truncates the Column, Expressi...
No comments:
Post a Comment