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 products in the produto_licitacoes
table to be displayed, regardless of whether there is no relationship in the other tables.