0
SELECT
*
FROM
produto_unidades
join produto_notas on produto_notas.id = produto_unidades.produtoNota_id
join produto_licitacoes on produto_licitacoes.id = produto_notas.produtoLicitacoes_id
where produto_unidades.unidade_id = 2
The Join works correctly, but I need ALL the products in the table produto_licitacoes
are displayed, regardless of having no relationship in the other tables.
Tried the
right join
?– Woss
@Andersoncarloswoss tried, without result
– Italo Rodrigo
Can you do a [mcve] demonstrating table structures and example records? You can use http:/sqlfiddle.com to show how it is.
– Woss
I believe that did not succeed because the second Join may have caught some results..
– rLinhares
@Inhares can explain better?
– Italo Rodrigo
@Italorodrigo I think I traveled =p??
– rLinhares