Skip to content

Instantly share code, notes, and snippets.

@jeetprksh
Last active August 14, 2018 07:24
Show Gist options
  • Save jeetprksh/2fa572881b86c4038384a63626ecc19e to your computer and use it in GitHub Desktop.
Save jeetprksh/2fa572881b86c4038384a63626ecc19e to your computer and use it in GitHub Desktop.
create table if not exists `users` (
`id` int not null auto_increment,
`firstName` varchar(20),
`lastName` varchar(20),
`age` int,
primary key (`id`)
);
insert into `users` values (1, "john", "doe", 29);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment