DIV
This page is part of MariaDB's Documentation.
The parent of this page is: SQL Operators for MariaDB Enterprise Server
Topics on this page:
Overview
Performs integer division.
EXAMPLES
CREATE TABLE div_example (
val INT
);
INSERT INTO div_example VALUES
(21), (22), (23), (24), (25), (26), (27), (28);
SELECT val, val DIV 7, val / 7 FROM div_example;
+------+-----------+---------+
| val | val DIV 7 | val / 7 |
+------+-----------+---------+
| 21 | 3 | 3.0000 |
| 22 | 3 | 3.1429 |
| 23 | 3 | 3.2857 |
| 24 | 3 | 3.4286 |
| 25 | 3 | 3.5714 |
| 26 | 3 | 3.7143 |
| 27 | 3 | 3.8571 |
| 28 | 4 | 4.0000 |
+------+-----------+---------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.