I wanted to a count of the same field for different values for example:
user{user_id, gender}
Gender can have obviously male or female 🙂
i want to get count for all the males and females i.e.
COUNT(male) COUNT(female)
4 16
but im confused because they come from the same gender coloumn thanks
Try this for row wise result:
Output:
Try this for row wise result with grand total:
Output:
Try this for column wise result:
Output:
See this SQL Fiddle