Criar relacionamento de tabelas em SQL
Como posso relacionar tabelas em SQL?
Ripthor
Curtidas 0
Respostas
Oscarluiz
19/02/2003
Tente assim,
SELECT <CAMPOS RELACIONADOS>
FROM TABLE1 T1 , TABLE2 T2
WHERE T1.CODIGO = T2.CODIGO
SELECT <CAMPOS RELACIONADOS>
FROM TABLE1 T1 , TABLE2 T2
WHERE T1.CODIGO = T2.CODIGO
GOSTEI 0