4
I have 2 tables
"Orcamento" -> colunas ['id', 'cliente_id']
Essa tabela existe valores em 'cliente_id'
"Ordem_servicos" -> colunas ['id', 'cliente_id', 'orcamento_id']
essa tabela não existe valores em 'cliente_id'
a coluna 'orcamento_id' refere-se a coluna 'id' da tabela "Orcamento"
I need to copy the data from the cliente_id column of the table "Orcamento" to the table "ordem_servicos". but using 'orcamento_id' to specify
you have to copy the cliente_id of the column that orcamento_id equals the id of the table "orcamentos"
kind of like I’m trying to do but it’s not working.
UPDATE ordem_servicos SET cliente_id = orcamentos.cliente_id
FROM orcamentos
WHERE orcamentos.id = ordem_servicos.orcamento_id
can specify better what you need?
– user148170
kkk.. yes bro I’ll redo then..
– MichaelCosta
blz. edit and tell me
– user148170
Ready bro see if now it’s gotten easier to understand
– MichaelCosta
posted an example
– MichaelCosta