How to calculate sum on the basis of multiple conditions, like Catregory-Reservation/General, Gender-Male/Female, and Applicant Type- Local/Outsider.. Please help
Yes, group by will work, but there was a lot more conditions on the basis of which I have to extract sum.. Any ways thank you Sir, I completed it with query using join.
Hi, You can use group by function, take help of below example select sum(column_name) from table_name group by Catregory,Gender,Applicant Type I hope it will help you.