Skip to content

Instantly share code, notes, and snippets.

@ofanidariyan
Created April 3, 2017 18:52
Show Gist options
  • Save ofanidariyan/a1a6c2fbf64557e992e1991ce1aa3878 to your computer and use it in GitHub Desktop.
Save ofanidariyan/a1a6c2fbf64557e992e1991ce1aa3878 to your computer and use it in GitHub Desktop.
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