Last active
August 29, 2015 13:57
-
-
Save absynthe/9779961 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
| CREATE TABLE itunes_tags ( | |
| game_id integer, | |
| itunes_id varchar(256), | |
| name varchar(256), | |
| tags varchar(512), | |
| primary key(itunes_id) | |
| ); | |
| insert into itunes_tags VALUES(4567 , 568438534, 'Stupid Zombies 2 Free' , 'Games,Entertainment,Action,Arcade'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment