TRANSPORTAR DE UMA TABELA PARA OUTRA
Bom dia!
Estou com um problema simples numa BD(Access):
- Transportar parte do contéudo de uma tabela para outra igual
Tb_Cliente1
Tb_Cliente2
Estou fazendo o seguinte:
InstrucaoSql = [Ô]Insert Into Tb_Cliente2(Select * From Tb_Cliente1 Where Nome = [ô][Ô] & RefE & [Ô][ô])[Ô]
A sintaxe esta errada???
Estou com um problema simples numa BD(Access):
- Transportar parte do contéudo de uma tabela para outra igual
Tb_Cliente1
Tb_Cliente2
Estou fazendo o seguinte:
InstrucaoSql = [Ô]Insert Into Tb_Cliente2(Select * From Tb_Cliente1 Where Nome = [ô][Ô] & RefE & [Ô][ô])[Ô]
A sintaxe esta errada???
O correto é o seguinte
INSERT INTO tabela DESTINO SELECT campo1, campo2 FROM tabela ORIGEM WHERE campo1 = [ô]xxx[ô]
INSERT INTO tabela DESTINO SELECT campo1, campo2 FROM tabela ORIGEM WHERE campo1 = [ô]xxx[ô]
Tópico encerrado , respostas não são mais permitidas