SQL - LEFT and RIGHT JOIN
Consider this SQL query:
Why might this query return fewer rows than table A has?
SELECT a.id, b.value FROM A a LEFT JOIN B b ON a.id = b.a_id WHERE b.value > 10;
Why might this query return fewer rows than table A has?
