Show items not in table – Mysql
I am trying to return a list of brands that do not have a specific product ID. Using the following SQL: SELECT Brands FROM AllCustomers WHERE ProductID NOT IN (SELECT ProductID WHERE ProductID ='10235') Is there a more effective way…