Currently I am doing this query:
select a.x, b.x, c.x
from number as a, customer as b, numbergroup as c
where a.b = b.b and a.c = c.c and c.b = b.b
However, I want to retrieve records from table “a” even if “a.c = null”, which is not retrieved due to the join between “a” and “c”.
I have found information about left join but I don’t know how to do it when the query involves more than two tables like in this case.
1 Answer