Created
January 21, 2013 19:52
-
-
Save MikeRogers0/4588747 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
$query = ' | |
CREATE TABLE products ( | |
product_id int not null auto_increment PRIMARY KEY, | |
product_name varchar(100), | |
description varchar(200), | |
photo_url varchar(100), | |
price decimal(4,2), | |
stock_level decimal(3,0) | |
); | |
'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment