Created
January 4, 2013 18:40
-
-
Save myronmarston/4454849 to your computer and use it in GitHub Desktop.
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 `engines` ( | |
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL | |
) ENGINE=InnoDB AUTO_INCREMENT=5249 DEFAULT CHARSET=utf8mb4; | |
INSERT INTO `engines` (`name`) VALUES ("~other~"), ("bing"), ("google"); | |
SELECT * FROM `engines` ORDER BY `name` ASC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment