I have 2 tables that I need to manipulate:
- intervencaoprioridade: idintervencaoprioridade, idcelula ...
-
cell: idcelula, name ...
SELECT ip.idintervencaoprioridade, zc.nome nome_celula FROM intervencaoprioridade ip LEFT JOIN celula zc ON ip.idcelula = zc.idcelula WHERE ip.idintervencaoprioridade = 22
The field ip.idcelula
can be NULL
, but when I do this query it returns the first record of the celula
table. I've seen other examples in SO , but I did not see anything that would help me.