Skip to content

Instantly share code, notes, and snippets.

@rozap
Last active February 8, 2018 23:07
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 rozap/82dc7db04d36d94706b87f05e03cc184 to your computer and use it in GitHub Desktop.
Save rozap/82dc7db04d36d94706b87f05e03cc184 to your computer and use it in GitHub Desktop.
SoQL transformation crash course
-- 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