Skip to content

Instantly share code, notes, and snippets.

@wrobstory
Created March 26, 2015 05:19
Show Gist options
  • Save wrobstory/94824e9e3639013bf2fa to your computer and use it in GitHub Desktop.
Save wrobstory/94824e9e3639013bf2fa to your computer and use it in GitHub Desktop.
Diamonds SQL
select cut, price
from diamonds
where cut in ('Ideal', 'Premium')
order by price desc
limit 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment