-2
I need to perform a Update in two tables at the same time, each of which contains two fields that will be changed. However, it is not working!
Returns error in INNER
Look how I thought:
ID_ESTOQUE = PK;
ID_IDENTIFICADOR = FK
UPDATE tb_estoque estoque
INNER JOIN tb_est_produto produto ON estoque.id_estoque = produto.id_identificador
SET estoque.id_cti = '004', estoque.cfop = '5102', produto.cod_ncm = '11111111', produto.cst = '020'
WHERE id_estoque = 1;
and what error? can give error if there is the column "id_stock" in the two tables, maybe
WHERE estoque.id_estoque = 1;
?– Ricardo Pontual