Created
April 13, 2014 22:34
-
-
Save jshcrowthe/10605122 to your computer and use it in GitHub Desktop.
SQL Create Table Statement
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 table_name | |
( | |
column_name1 data_type(size), | |
column_name2 data_type(size), | |
column_name3 data_type(size), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment