Last active
June 17, 2019 10:34
-
-
Save igeligel/fbcf7f91ac8d06bdf37673885198e19c to your computer and use it in GitHub Desktop.
base-case.sql
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 *, | |
CASE | |
WHEN name = 'Airbus A333-300' THEN 'airplane' | |
WHEN name = 'Airbus A380-800' THEN 'airplane' | |
WHEN name = 'Volkswagen Golf' THEN 'car' | |
WHEN name = 'Porsche Cayenne' THEN 'car' | |
ELSE null | |
END AS type | |
FROM vehicles; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment