日期:2014-05-18 浏览次数:20490 次
select column1 as [你想显示的列名] from tablename 或 select column [你想显示的列名] from tablename
------解决方案--------------------
这个是查找部门和每种部门的个数 select 部门,count(部门)from table group by 部门 这样好像是你要的结果 select 部门,count(人员姓名) '人数' from table group by 部门
------解决方案--------------------
select 部门,count(部门) as '人数' from table group by 部门
or
select 部门,count(部门) '人数' from table group by 部门
or
select 部门,'人数'=count(部门) from table group by 部门