Aby porównać NULL
wartości, których musisz użyć IS NULL
orzeczenie, tak:
SELECT table1.*, table2.*
FROM table1
LEFT JOIN table2 ON table1.id=table2.id
WHERE table2.surname IS NULL
Aby porównać NULL
wartości, których musisz użyć IS NULL
orzeczenie, tak:
SELECT table1.*, table2.*
FROM table1
LEFT JOIN table2 ON table1.id=table2.id
WHERE table2.surname IS NULL