0
TABELA 1
- ID
- IMOVEL
- CODIGO
- IMAGEM_G <----- nessa tabela este dado é vazio.
- IMAGEM_P
TABELA 2
- ID
- IMOVEL <----- nessa tabela este dado é vazio.
- CODIGO <----- nessa tabela este dado é vazio.
- IMAGEM_G
- IMAGEM_P
I need a TABELA 3
thus:
- ID <----- idêntico nas tabelas
- IMOVEL <----- ID TABELA 1
- CODIGO <----- ID TABELA 1
- IMAGEM_G <----- ID TABELA 2
- IMAGEM_P <----- idêntico nas tabelas
Can you help me ride this INSERT
in TABELA 3
?
Is this coming from a form? Have you already created the 3rd table? It would just make a normal index with the data you want in table 3
– phpricardo
I will select in the database itself and make Insert of these inputs in a third table inside the database.
– Marcos Vinicius
Then just do the SELECT of the data you want and then the INSERT with the return of the data in TAB_3, like a process?
– phpricardo