I have created two tables:
Table A holds user's bookmarks in a bm_name field and their usernames in a username field.
Table B has a matching bm_name field and several other fields containing bookmark information like date created, etc.
I want to be able to pull all the bookmarks from Table A that a specific user has not already bookmarked. When a user bookmarks a page, it inserts into Table A their username in the username field and the bookmark name into the bm_name field.
So, out of a list of potential bookmarks in the system, I want to pull unique records of the remaining bookmarks.
I have tried everything short of creating a temp table. Could use some help with the SQL syntax.
Thanks.