ok, this is probably pretty simple. I've spent hours and can't get this.
I have two tables, one has items being reviewed and the other has the results of the review forms. They're tied together with item IDs used in both. The review table also lists the reviewer. So, basically the item table will list an item with a unique item ID and other fields with item information. A review table record will have the unique item ID, a unique ID for the reviewer, and all the rest of the review info. This table holds all item reviews posted from various reviewers.
When a reviewer is logged in I need them to see a list of items that they haven't yet reviewed.
I was very close to getting this using JOIN. I got all items that a particular reviewer hadn't reviewed but also got items that they had if there was a record in the database from someone else having reviewed it.
Would someone please help me with this?
Figure I have a table called 'items' and one called 'reviews'.
Both tables have fields labeled 'itemID' and the 'reviews' table has a field called 'reviewerID'.
Thanks in advance.