SQL - LEFT and RIGHT JOIN
Consider this query:
What is the problem with this query if you want to keep all rows from A?
SELECT a.id, b.value FROM A LEFT JOIN B ON a.id = b.a_id WHERE b.value > 10;What is the problem with this query if you want to keep all rows from A?
