Skip to content

Instantly share code, notes, and snippets.

@ebinnion
Last active December 10, 2015 13:09
Show Gist options
  • Save ebinnion/4439165 to your computer and use it in GitHub Desktop.
Save ebinnion/4439165 to your computer and use it in GitHub Desktop.
Create Table MySQL
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