用SQL语句实现数据筛选

用SQL语句实现数据筛选,第1张

--将字段条件筛选建立临时表

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、结果如图:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6787772.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存