Created
April 6, 2010 19:49
-
-
Save richtaur/358006 to your computer and use it in GitHub Desktop.
vertiSQL
This file contains hidden or 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
-- I used to do it like this: | |
SELECT * FROM table WHERE | |
hurr | |
AND (foo = 'bar') | |
AND (bar = 'foo') | |
-- Then later I spaced it out even more: | |
SELECT | |
* | |
FROM | |
table | |
WHERE | |
hurr | |
AND | |
(foo = 'bar') | |
LIMIT | |
1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment