i have two tables
item_tb
| item_id | user_id |
---------------------
user_tb
| user_id | user_name |
-----------------------
in item_tb i have lots of items that belongs to various user in user_tb, an item can belong to one or more users…
so, given the userid A and userid B how can I do a mysql query to select all the items the belong both to userA and userB?
Where 42 and 43 are those users.