Created
August 2, 2019 21:42
-
-
Save parzibyte/6469d75431e842d1f11a98576c7e233e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MariaDB [(none)]> select floor(0.3); | |
+------------+ | |
| floor(0.3) | | |
+------------+ | |
| 0 | | |
+------------+ | |
1 row in set (0.11 sec) | |
MariaDB [(none)]> select floor(1.3); | |
+------------+ | |
| floor(1.3) | | |
+------------+ | |
| 1 | | |
+------------+ | |
1 row in set (0.00 sec) | |
MariaDB [(none)]> select floor(1.9); | |
+------------+ | |
| floor(1.9) | | |
+------------+ | |
| 1 | | |
+------------+ | |
1 row in set (0.00 sec) | |
MariaDB [(none)]> select floor(165.55); | |
+---------------+ | |
| floor(165.55) | | |
+---------------+ | |
| 165 | | |
+---------------+ | |
1 row in set (0.00 sec) | |
MariaDB [(none)]> select floor(200.5); | |
+--------------+ | |
| floor(200.5) | | |
+--------------+ | |
| 200 | | |
+--------------+ | |
1 row in set (0.00 sec) | |
MariaDB [(none)]> select floor(200.4); | |
+--------------+ | |
| floor(200.4) | | |
+--------------+ | |
| 200 | | |
+--------------+ | |
1 row in set (0.00 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment