Last active
December 10, 2015 13:09
-
-
Save ebinnion/4439165 to your computer and use it in GitHub Desktop.
Create Table MySQL
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 tutorials_tbl( | |
id INT NOT NULL AUTO_INCREMENT, | |
title VARCHAR(100) NOT NULL, | |
slug VARCHAR(40) NOT NULL, | |
content VARCHAR(2000) NOT NULL, | |
PRIMARY KEY ( id ) | |
) AUTO_INCREMENT=15110; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment