Skip to content

Instantly share code, notes, and snippets.

@jgillmanjr
Last active February 13, 2016 04:05
Show Gist options
  • Save jgillmanjr/1e146f19447040168ec5 to your computer and use it in GitHub Desktop.
Save jgillmanjr/1e146f19447040168ec5 to your computer and use it in GitHub Desktop.
SQL Styling example
SELECT
t.some_field,
t2.another_field
FROM
table t
INNER JOIN table2 t2 ON t.fkey = t2.pkey
WHERE
t.some_field = 'f00bar'
UNION SELECT
t3.field
FROM
table3 t3
WHERE
t3.field = 42;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment