Well, assuming you have a unique id for each user, and the user id of the person that each of the items belong to.. ie..
user table -
userid nameofuser
items table -
itemid, userid, nameofitem
SELECT name, nameofitem FROM users, items WHERE users.id = items.userid AND users.id = whateveruseryouareselecting;
Or something like that.. let me know if this helps.
You shouldnt need more than 1 query per user; and if you do, your DB design is probably the cuplret.