Difference between revisions of "DIV"
From SQLZOO
| Line 11: | Line 11: | ||
<h1>DIV</h1> | <h1>DIV</h1> | ||
| − | <p> | + | <p><b>a DIV b</b> returns the integer value of a divided by b. </p> |
<p></p> | <p></p> | ||
<pre style='width:60ex'> | <pre style='width:60ex'> | ||
Latest revision as of 20:49, 21 October 2012
| a DIV b | ||
|---|---|---|
| Engine | OK | Alternative |
| ingres | No | FLOOR(a/b) |
| mysql | Yes | |
| oracle | No | FLOOR(a/b) |
| postgres | No | FLOOR(a/b) |
| sqlserver | No | FLOOR(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: | English • Deutsch |
|---|