Skip to content

Instantly share code, notes, and snippets.

@minhphong306
Created July 6, 2018 15:15
Show Gist options
  • Save minhphong306/994cd48e784aa90fe7bbca2d065416ea to your computer and use it in GitHub Desktop.
Save minhphong306/994cd48e784aa90fe7bbca2d065416ea to your computer and use it in GitHub Desktop.
Database for test remove duplicate file
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