select top 100 *
into #temp
from table
where name not in ("%批发%","不含'%厂")
and region in ("餐饮",..."副食")--填写完每个经营面
--返回数据表,企业数和个体户,这个区分不知道用什么,所以第二个字段还需要改
select province,count(distinct name) as num_company,
case when name="个体户" then count(distinct name) as num_individual
from #temp
用group by语句可以筛选重复数据。
1、创建测试表、插入数据
create table test(id int,
name varchar(10))
insert into test values (1,'张三')
insert into test values (2,'李四')
insert into test values (3,'王五')
insert into test values (4,'赵六')
insert into test values (1,'张三')
insert into test values (2,'李四')
2、现在要筛选出重复数据,使查询的数据不重复,可用语句
select id,name from test group by id,name
3、结果如图:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)