Created
November 7, 2016 13:57
-
-
Save minya92/9f016415276b4ffa3aa784402d9bc99e to your computer and use it in GitHub Desktop.
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
with qq as ( | |
select 11 | |
union all | |
select 12 | |
union all | |
select 11 | |
), | |
ww as ( | |
select 1 | |
union all | |
select 11 | |
) | |
select * from qq | |
union | |
select * from ww where 1=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment