Skip to content

Instantly share code, notes, and snippets.

@chbatey
Last active August 29, 2015 14:15
Show Gist options
  • Save chbatey/eef906a61f52eca0c511 to your computer and use it in GitHub Desktop.
Save chbatey/eef906a61f52eca0c511 to your computer and use it in GitHub Desktop.
insert into staff(name, favourite_colour, job_title) values ('Charlie', 'Blue', 'Awesome Marketer');
insert into store(store_name, location, store_type) values ('ChrisBatey.com', 'US', 'WEB');
insert into customer_events(customer, time, event_type, store, staff) values ('chbatey', now(), 'BUY_MOVIE', 'ChrisBatey.com', 'Charlie');
insert into customer_events(customer, time, event_type, store, staff) values ('chbatey', now(), 'WATCH_MOVIE', 'ChrisBatey.com', 'Charlie');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment