首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

sql 文求 sqlserver解决方案

2013-09-11 
sql 文求 sqlserver表Aid name 工资 部门1 aa 2000 开发2 bb 3000 销售3 cc 2000 开发4 dd 5000 销售5 ee

sql 文求 sqlserver
表A 
id name 工资 部门
1 aa 2000 开发
2 bb 3000 销售
3 cc 2000 开发
4 dd 5000 销售
5 ee 8000 技术
6 ff 3500 技术



实现成 
部门 2000~4000 4001~6000 6001~8000
开发 2人 0人 0人
销售 1人 1人 0人
技术 0人 0人 2人


[解决办法]

SQL code
use tempdb;/*create table A(    id int not null,    name varchar(10) not null,    [工资] int not null,    [部门] nvarchar(10) not null);insert into A(id,name,[工资],[部门])values(1,'aa',2000,'开发'),(2,'bb',3000,'销售'),(3,'cc',2000,'开发'),(4,'dd',5000,'销售'),(5,'ee',8000,'技术'),(6,'ff',3500,'技术');*/select [部门],COUNT(case when A.[工资] between 2000 and 4000 then 1 end) as [2000~4000],COUNT(case when A.[工资] between 4001 and 6000 then 1 end) as [4001~6000],COUNT(case when A.[工资] between 6001 and 8000 then 1 end) as [6001~8000]from Agroup by [部门];
我的异常网推荐解决方案:软件开发者薪资,http://www.myexception.cn/other/1391128.html

热点排行