Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 2, 2019 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/a92dfea73d805c5f4313f667311b27f0 to your computer and use it in GitHub Desktop.
Save parzibyte/a92dfea73d805c5f4313f667311b27f0 to your computer and use it in GitHub Desktop.
MariaDB [(none)]> select round(12.5, 0);
+----------------+
| round(12.5, 0) |
+----------------+
| 13 |
+----------------+
1 row in set (0.00 sec)
MariaDB [(none)]> select round(12.4, 0);
+----------------+
| round(12.4, 0) |
+----------------+
| 12 |
+----------------+
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