Observe os comandos SQL abaixo: I. select * from tb_a join t...
Observe os comandos SQL abaixo:
I. select * from tb_a join tb_b on (tb_a.id_a=tb_b.id_a)
II. select * from tb_a join tb_b on (tb_a.id_a=tb_b.id_b)
III. select * from tb_a, tb_b where tb_a.id_a=tb_b.id_b
IV. select * from tb_a, tb_b where tb_a.id_a=tb_b.id_a
Observe a tabela abaixo:
Quais comandos apresentados anteriormente retornam o resultado da tabela acima?