Differences

This shows you the differences between two versions of the page.

Link to this comparison view

dev:sql:functions:mod [2010/07/09 20:13]
els
dev:sql:functions:mod [2016/06/28 22:38]
Line 1: Line 1:
-{{page>:​top_add&​nofooter&​noeditbtn}} 
-{{page>:​sql_bar&​nofooter&​noeditbtn}} 
-====== Omnidex SQL Function: MOD ====== 
-===== Description ===== 
-Returns "x modulus y". This is the integral remainder of x divided by y. 
- 
-This function returns an INTEGER datatype. 
- 
-===== Syntax ===== 
- 
-  MOD( integral_expression,​ divisor_integral_expression ) 
-  ​ 
-  integral_expression % divisor_integral_expression 
- 
-== integral_expression == 
-  
-Required. ​ Any expression that returns a integer-class datatype. ​ This value will be divided by the //​divisor_integral_expression//​. 
- 
-== divisor_integral_expression == 
-  
-Required. ​ Any expression that returns a integer-class datatype. ​ This value will be divided into the //​integral_expression//​. 
- 
-===== Example ===== 
-==== Example 1: Column using MOD ==== 
- 
-<​code>​ 
-> select population, mod(population,​ 100) from country_census;​ 
- 
-POPULATION ​             MOD(COUNTRY_CENSUS.POP 
----------------------- ​ ---------------------- 
-              28846761 ​                     61 
-              30007094 ​                     94 
-             ​248709873 ​                     73 
-             ​285230516 ​                     16 
- 
-</​code>​ 
- 
-==== Example 2: Column using % ==== 
- 
-<​code>​ 
-> select population, population % 100 from country_census;​ 
- 
-POPULATION ​             POPULATION % 100 
----------------------- ​ ---------------------- 
-              28846761 ​                     61 
-              30007094 ​                     94 
-             ​248709873 ​                     73 
-             ​285230516 ​                     16 
- 
-</​code>​ 
-====== Additional Resources ====== 
- 
-See also: 
-{{page>​dev:​sql:​functions:​see_also_math&​noheader&​nofooter&​noeditbtn}} 
- 
- 
-{{page>:​bottom_add&​nofooter&​noeditbtn}} 
  
 
Back to top
dev/sql/functions/mod.txt ยท Last modified: 2016/06/28 22:38 (external edit)