Last active
August 29, 2015 14:15
-
-
Save chbatey/eef906a61f52eca0c511 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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