Skip to content

Instantly share code, notes, and snippets.

@bsquidwrd
Last active March 22, 2017 17:07
Show Gist options
  • Save bsquidwrd/95ca7ccafcfe27e9de8e990a5cb06855 to your computer and use it in GitHub Desktop.
Save bsquidwrd/95ca7ccafcfe27e9de8e990a5cb06855 to your computer and use it in GitHub Desktop.
SQL Standard vs My standard
SELECT
S.[ID]
,S.[FN]
,S.[LN]
FROM
STF S
WHERE
S.[DEL] = 0
AND S.[ID] >= 100
SELECT S.[ID],
S.[FN],
S.[LN]
FROM STF S
WHERE S.[DEL] = 0
AND S.[ID] >= 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment