Last active
November 27, 2015 19:13
-
-
Save tokenvolt/02c9e9273f8004242c16 to your computer and use it in GitHub Desktop.
Revisions
-
tokenvolt revised this gist
Nov 27, 2015 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ SELECT * FROM (SELECT * FROM (SELECT id FROM users) AS users_only_ids WHERE id > 2) AS users_only_ids_filtered ORDER BY id; -
tokenvolt created this gist
Nov 27, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ select * from (select * from (select id from users) as users_only_ids where id > 2) as users_only_ids_filtered order by id;