Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 2, 2019 21:17
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/200fc9d7f99de168e4b8a76030b1e77e to your computer and use it in GitHub Desktop.
Save parzibyte/200fc9d7f99de168e4b8a76030b1e77e to your computer and use it in GitHub Desktop.
MariaDB [(none)]> select round(12.78, -1);
+------------------+
| round(12.78, -1) |
+------------------+
| 10 |
+------------------+
1 row in set (0.05 sec)
MariaDB [(none)]> select round(12.78, -2);
+------------------+
| round(12.78, -2) |
+------------------+
| 0 |
+------------------+
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