Created
May 20, 2014 16:00
-
-
Save niisar/90f19ad92000584946e7 to your computer and use it in GitHub Desktop.
refer to with clause
This file contains 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 AVG_WT_GENDER AS | |
(SELECT GENDER,AVG(WEIGHT) AS AVG_WT_SEX FROM CHILDSTAT GROUP BY GENDER | |
), | |
AVG_WT_OVERALL AS | |
(SELECT AVG(AVG_WT_SEX) AS AVG_WT_ALL FROM AVG_WT_GENDER | |
) | |
SELECT a.* | |
FROM CHILDSTAT a | |
WHERE a.WEIGHT >= | |
(SELECT AVG_WT_ALL FROM AVG_WT_OVERALL | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment