When joining three tables, what does an INNER JOIN chain require for a row to appear in the result?SELECT * FROM a INNER JOIN b ON b.a_id = a.id INNER JOIN c ON c.b_id = b.id;