Skip to content

Instantly share code, notes, and snippets.

@yusufcakmak
Created August 3, 2015 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusufcakmak/d0853f63d430d1e6d689 to your computer and use it in GitHub Desktop.
Save yusufcakmak/d0853f63d430d1e6d689 to your computer and use it in GitHub Desktop.
CREATE TABLE `Book` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`bookName` varchar(100) DEFAULT NULL,
`bookDesc` varchar(120) DEFAULT NULL,
`insert_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment