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
add a where (main.col2 = a.col2)
just do a join instead of a left join.