Skip to content

Instantly share code, notes, and snippets.

@MichaelBaker
Last active August 29, 2015 14:16
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 MichaelBaker/c9bab7aa0307a938f796 to your computer and use it in GitHub Desktop.
Save MichaelBaker/c9bab7aa0307a938f796 to your computer and use it in GitHub Desktop.
/*
data Creator = Stylist Int
| Member Int
| Service
data Service = Service1
| Service2
*/
select * from outfits where creator = (Stylist _);
select * from outfits where creator = Service1;
select creator from outfits where creator = (Member 6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment