SQL - LEFT and RIGHT JOIN
Given the query:
What is the likely purpose of this query?
SELECT a.id, b.value FROM A a LEFT JOIN B b ON a.id = b.a_id WHERE b.value IS NULL;What is the likely purpose of this query?
