Skip to content

Instantly share code, notes, and snippets.

@halfak
Last active August 29, 2015 14:08
Show Gist options
  • Save halfak/e2b145c2f10342a7357a to your computer and use it in GitHub Desktop.
Save halfak/e2b145c2f10342a7357a to your computer and use it in GitHub Desktop.
mysql:[email protected] [staging]> SELECT -6.4 BETWEEN -5.1 AND -3.1;
+----------------------------+
| -6.4 BETWEEN -5.1 AND -3.1 |
+----------------------------+
| 0 |
+----------------------------+
1 row in set (0.00 sec)
mysql:[email protected] [staging]> SELECT -3.4 BETWEEN -5.1 AND -3.1;
+----------------------------+
| -3.4 BETWEEN -5.1 AND -3.1 |
+----------------------------+
| 1 |
+----------------------------+
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