Skip to content

Instantly share code, notes, and snippets.

@toyeiei
Last active November 8, 2018 04:11
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/4de9a4d055c3eb98bf68338f5088cf0b to your computer and use it in GitHub Desktop.
Save toyeiei/4de9a4d055c3eb98bf68338f5088cf0b to your computer and use it in GitHub Desktop.
SQL for Beginner - AND OR
-- filter customers from USA who also live in CA state
SELECT *
FROM customers
WHERE country = 'USA' AND state = 'CA';
-- filter customers from USA or Brazil
SELECT *
FROM customers
WHERE country = 'USA' OR country = 'Brazil';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment