请问这个该怎么改,navicat

统计各系的男、女生人数,结果中包含系别、性别、人数这三个中文列标题
select sdept'系别',ssex'性别',count(sno)'人数' from students group by sdept,ssex;

img

别名中间加空格或者as关键字