Last active
February 8, 2018 23:07
-
-
Save rozap/82dc7db04d36d94706b87f05e03cc184 to your computer and use it in GitHub Desktop.
SoQL transformation crash course
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
-- strings | |
'hello' | |
"or double quoted" | |
-- numbers | |
-1.8 | |
47 | |
-- booleans | |
true | |
false | |
-- column identifiers | |
foo -- references the column named foo | |
`foo-bar` -- wrap your column identifier in backticks if it's not a valid identifier by itself | |
-- comments | |
-- comments have a "--" in front of the line | |
-- just like SQL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment