Created
March 25, 2014 09:26
-
-
Save sqlparser/9758026 to your computer and use it in GitHub Desktop.
select as subquery demo code
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
SELECT SUM (Sales) FROM Store_Information | |
WHERE Store_Name IN | |
( | |
SELECT Store_Name FROM Geography | |
WHERE Region_Name = 'West' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment