Skip to content

Instantly share code, notes, and snippets.

@andrefreitas
Last active December 16, 2015 08:28
Show Gist options
  • Save andrefreitas/5405648 to your computer and use it in GitHub Desktop.
Save andrefreitas/5405648 to your computer and use it in GitHub Desktop.
db.persons.insert({name:"Peter",email:"petergriffin@gmail.com",age:42})
create table persons (
id integer primary key auto_increment,
name varchar(30),
email varchar(30),
age integer
);
insert into persons(name, email,password) values("Peter","petergriffin@gmail.com",42);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment