2
I have the following tables:
Responsavel | Filho Id Nome | Id Nome ResponsavelId 1 Ana | 1 Aninha 1 2 Maria | 2 Ana Júlia 1 3 Pedro | 3 Mariazinha 2
I’d like to make a SELECT
with INNER JOIN
where it presented the following result:
Id Responsavel Filho 1 Ana Aninha 1 Ana Ana Júlia 2 Maria Mariazinha 3 Pedro NULL
I need that amount null. Could someone help me? I should use Left Join
?