Created
July 6, 2018 15:15
-
-
Save minhphong306/994cd48e784aa90fe7bbca2d065416ea to your computer and use it in GitHub Desktop.
Database for test remove duplicate file
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 IF NOT EXISTS `duplicate` ( | |
`inc_id` int(11) NOT NULL AUTO_INCREMENT, | |
`username` varchar(50) COLLATE utf8_vietnamese_ci NOT NULL, | |
`note` varchar(200) COLLATE utf8_vietnamese_ci DEFAULT NULL, | |
PRIMARY KEY (`inc_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_vietnamese_ci; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment