Created
May 24, 2017 07:06
-
-
Save sachinsmc/8f0f46ca2fc448b256e01b9a7c9524e2 to your computer and use it in GitHub Desktop.
JSON In MySQL
This file contains 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 `book` ( | |
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, | |
`title` varchar(200) NOT NULL, | |
`tags` json DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=InnoDB; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment