统计各系的男、女生人数,结果中包含系别、性别、人数这三个中文列标题select sdept'系别',ssex'性别',count(sno)'人数' from students group by sdept,ssex;
别名中间加空格或者as关键字