Created
March 3, 2018 05:58
-
-
Save cbzehner/aa342d959b691c37af16566b96e08973 to your computer and use it in GitHub Desktop.
Movie Programming
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 | |
name as full_name, | |
dob as birthday, | |
job as profession, | |
loc as office, | |
role as title | |
FROM employees | |
WHERE | |
profession LIKE '%ngineer%' | |
AND loc IN ['Fremont', 'San Francisco', 'Sunnyvale'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment