Created
April 3, 2017 18:52
-
-
Save ofanidariyan/a1a6c2fbf64557e992e1991ce1aa3878 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 IF NOT EXISTS `users` ( | |
`id` int(11) NOT NULL, | |
`full_name` varchar(255) NOT NULL, | |
`user_name` varchar(255) NOT NULL, | |
`email` varchar(100) NOT NULL | |
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; | |
INSERT INTO `users` (`id`, `full_name`, `user_name`, `email`) VALUES | |
(1, 'Sam Ben', 'samben', '[email protected]'), | |
(2, 'Ofani Dariyan', 'ofani', '[email protected]'), | |
(3, 'Toni Stark', 'toni', '[email protected]'), | |
(4, 'Mrs Valak', 'valak', '[email protected]'), | |
(5, 'Iron Wine', 'iron', '[email protected]'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment