In this SQL Query Example, We’ll learn How to List only the Count of Female Students in Each Class.
SQL Query:
1 2 3 4 5 6 | Select class,gender,count(*) as StudentCount from students where gender = 'F' group by gender,class |
In this SQL Query Example, We’ll learn How to List only the Count of Female Students in Each Class.
SQL Query:
1 2 3 4 5 6 | Select class,gender,count(*) as StudentCount from students where gender = 'F' group by gender,class |