Last active
February 9, 2018 00:57
-
-
Save rozap/043a76af28411c6abe7d305f3a3bf86b 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
-- math | |
2 + 2 | |
2 - 2 | |
2 / 2 | |
2 * 2 | |
4 % 1 | |
-- boolean | |
not true | |
true or false | |
true and true | |
-- comparison | |
1 = 1 | |
1 == 1 | |
1 != 2 | |
1 < 2 | |
1 > 2 | |
1 <= 2 | |
1 >= 2 | |
-- others | |
1.5 BETWEEN 1 and 2 | |
1 IN (0, 1, 2, 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment