I have a table of users and a table of products, each with their own unique ids, I also have a relation table linking the user ids with each of the object ids they posess. I am trying to figure out a select call that would return a list of all products belonging to a user, with each row containing the product name (joined from the products table) and also the total number of users who have that product. Is there any way to do this with one SQL call?