Skip to content

Instantly share code, notes, and snippets.

@cbzehner
Created March 3, 2018 05:58
Show Gist options
  • Save cbzehner/aa342d959b691c37af16566b96e08973 to your computer and use it in GitHub Desktop.
Save cbzehner/aa342d959b691c37af16566b96e08973 to your computer and use it in GitHub Desktop.
Movie Programming
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