I have two tables, a list products and their product id's, and a list of comments for the products. They go like this
product list
id | productid | product name
product review
id | productid | comment
I need to find which products don't have a comment, so need to look at each product in the list and see if there is a comment associated.
How do I output a list of product id's and names that have not had a review?
product list
id | productid | product name
product review
id | productid | comment
I need to find which products don't have a comment, so need to look at each product in the list and see if there is a comment associated.
How do I output a list of product id's and names that have not had a review?