Created
March 7, 2014 17:11
-
-
Save clairtonluz/9415524 to your computer and use it in GitHub Desktop.
This file contains 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
--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