Skip to content

Instantly share code, notes, and snippets.

@clairtonluz
Created March 7, 2014 17:11
Show Gist options
  • Save clairtonluz/9415524 to your computer and use it in GitHub Desktop.
Save clairtonluz/9415524 to your computer and use it in GitHub Desktop.
--Tabelas de exemplo
create table usuarios(
id int not null primary key auto_increment,
nome varchar(70),
fone varchar(10)
);
create table contatos(
id int not null primary key auto_increment,
fone varchar(10)
);
--Exemplo de multi insert
insert into contatos (fone) select fone from usuarios;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment