SQL - LEFT and RIGHT JOIN
Given tables
authors(id, name) and books(author_id, title), what will this query return?SELECT a.name FROM authors a LEFT JOIN books b ON a.id = b.author_id WHERE b.author_id IS NULL;
