Hello again!
I'm a complete newbie to SQL, and I am having problems with what I assume is an easy easy SQL join statement.
I have an "inventory" and an "items" table. The "inventory" table contains a user_id, an item_id, and a qty. The "items" table contains an item_id and and item_name.
I want a user to get a list of all inventory items listed in the "inventory" table with their user_id, and then in each row, display the item_name from the "items" table associated with the item_id in the "inventory" table...
It seems like it should be really simple, but all my queries seem to be returning every item in the "items" table rather than every item in the "inventory" table. Could someone give me an example of the SQL query I should be using?