I have a table called product and a table called sold.
I’m trying to figure out if there is a way to use one query to find all products and then for each product fond return in the result set a sum of sold.amount as total.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s a very basic SQL join operation:
if you want to list only products which have at least one sale, then change ‘left join’ to ‘inner join’.