Created
December 1, 2020 01:24
-
-
Save xtrator/f36123a12dec4f899fa8f434bf898385 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
SELECT * FROM ( | |
SELECT *, | |
CASE | |
WHEN age < 18 THEN 'Infant' | |
WHEN age < 30 THEN 'Young' | |
WHEN age < 50 THEN 'Adult' | |
ELSE 'Senior' | |
END AS age_group | |
FROM users ) AS age_group_table | |
WHERE gender = 'F' AND age_group IN ('Young', 'Adult'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment