DIV

From SQLZoo
Jump to navigation Jump to search
Compatibility
a DIV b
EngineOKAlternative
ingresNoFLOOR(a/b)
mysqlYes
oracleNoFLOOR(a/b)
postgresNoFLOOR(a/b)
sqlserverNoFLOOR(a/b)

DIV

a DIV b returns the integer value of a divided by b.

   8 DIV 3 -> 2  

In this example we calculate the population in millions.

SELECT name,
       population DIV 1000000
  FROM bbc
SELECT name,
       FLOOR(population/1000000)
  FROM bbc

See also

Language:Project:Language policy English  • Deutsch
DataWars, Data Science Practice Projects - LogoDataWars: Practice Data Science/Analysis with +100 Real Life Projects