Skip to content
Advertisement

Mysql INNER JOIN after a LEFT OUTER JOIN

I have below query;

Now, not every product has product_field_value corresponding to the :

But those that have corresponding rows in the product_field_value table, should inner join into product_colour also.

But as you imagine, INNER JOIN to product_colour table after a LEFT OUTER JOIN to product_field_value table, filters out those that DOESN’T HAVE product_field_value relation.

So I’ve come up with this solution;

And this query returns both those that DOESN’T HAVE corresponding product_field_value and those that HAVE.

But performance for latest query is too slow.

Is there a better way to do this ?

Advertisement

Answer

What if you move the logic to the WHERE clause, is performance better?

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement