I have a table, let\'s call it \"a\" that is used in a left join in a view that involves a lot of tables. However, I only want to return rows of \"a\" if they also join wit
SELECT ... FROM .... LEFT JOIN ( a INNER JOIN b ON .... ) ON ....