Skip to content

Instantly share code, notes, and snippets.

@toyeiei
Last active November 8, 2018 04:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toyeiei/4f53be912d283e7a80b6034aa73ba0c9 to your computer and use it in GitHub Desktop.
Save toyeiei/4f53be912d283e7a80b6034aa73ba0c9 to your computer and use it in GitHub Desktop.
SQL for Beginner - WHERE
-- where clause used to filter rows
-- filter only customers from USA
SELECT *
FROM customers
WHERE country = 'USA';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment