<% SQL="select JA.*, P.PART_NUMBER, S.STATION_NAME, A.ACTION_NAME from JOB_ACTIONS JA inner join JOB J on JA.JOB_NUMBER = J.JOB_NUMBER inner join STATION S on JA.STATION_ID = S.NID inner join PART P on J.PART_NUMBER_ID = P.NID inner join ACTION A on JA.ACTION_ID = A.NID where S.STATION_NUMBER = 'ST00029' and A.ACTION_NAME = 'Single microphone Lot Number 1' and JA.JOB_NUMBER='"&trim(thisjobnumber(u))&"' and JA.SHEET_NUMBER="&cint(trim(thissheetnumber(u)))&""
rst.open SQL,CONN,1,3
if not rst.eof then
while not rst.eof
response.Write(rst("ACTION_VALUE"))
rst.movenext
wend
end if
rst.close
%>
查出来的结果全是一样的重复结果,怎么去掉重复的?
我是新手,请教方法,我查了半天了,因为我的语句有点复杂,所以不会写
你把sql语句改下:
select distinct 字段 from 表
如果有重复数据,那么他只显示一条!
你觉得这个语句适合这么改么?你改给我看下?
1、打开要去掉重复数据的数据库,这里新建一张含有重复数据的user表做示例,如下图所示:
2、输入“select * from user where name in (select name from user group by name having count(name) > 1) ”sql语句,点击运行可以看到查询出了数据库中user表的重复数据。
3、通过“delete from user where name in (select name from user group by name having count(name) > 1) ”sql语句删除姓名重复的数据。
4、也可以通过“select distinct name from user”sql语句来去掉重复数据,这里去掉了张三的重复数据。
5、通过“select distinct class from user”sql语句来去掉班级相同的重复数据,如下图所示:
以下为去重方法。三个方法。效率1 >2>3 推荐使用第一条
[sql] view plain copy print?
1,Select * from stuinfo a where not exists(select 1 from stuinfo where stuName=a.stuName and ID<a.ID)
2,select a.* from stuinfo a join (select min(ID)ID,stuName from stuinfo group by stuName) b on a.stuName=b.stuName and a.ID=b.ID
3,select * from stuinfo a where ID=(select min(ID) from stuinfo where stuName=a.stuName)
Select * from stuinfo a where not exists(select 1 from stuinfo where stuName=a.stuName and ID<a.ID)
select a.* from stuinfo a join (select min(ID)ID,stuName from stuinfo group by stuName) b on a.stuName=b.stuName and a.ID=b.ID
select * from stuinfo a where ID=(select min(ID) from stuinfo where stuName=a.stuName)
扩展资料
有重复数据主要有一下几种情况:
1,存在两条完全相同的纪录
这是最简单的一种情况,用关键字distinct就可以去掉
example: select distinct * from table(表名) where (条件)
2,存在部分字段相同的纪录(有主键id即唯一键)
如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及group by分组
example:
select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....])
3,没有唯一键ID
这种情况我觉得最复杂,目前我只会一种方法,有那位知道其他方法的可以留言,交流一下:
example:
select identity(int1,1) as id,* into newtable(临时表) from table
select * from newtable where id in (select max(id) from newtable group by [去除重复的字段名列表,....])
drop table newtable
参考资料来源:百度百科 - 结构化查询语言
sql查询去掉重复记录可以参考以下操作:
if exists(select * from sysobjects where name='stuInfo')
drop table stuInfo
create table stuInfo /*创建学员信息表**/
(
stuName varchar(20) not null,-- 姓名,非空
stuNo char(6) not null,-- 学号,非空
stuAge int not null,-- 年龄,int 默认为4个长度
stuId numeric(18,0),
stuSeat smallint ,-- 坐位
stuAddress text -- 住址 可以为空
)
-- 给stuInfo添加一列
alter table stuInfo add id int identity(1,1) primary key;
if exists(select * from sysobjects where name='stuInfo')
drop table stuInfo
create table stuInfo /*创建学员信息表**/
(
stuName varchar(20) not null,-- 姓名,非空
stuNo char(6) not null,-- 学号,非空
stuAge int not null,-- 年龄,int 默认为4个长度
stuId numeric(18,0),
stuSeat smallint ,-- 坐位
stuAddress text -- 住址 可以为空
)
-- 给stuInfo添加一列
alter table stuInfo add id int identity(1,1) primary key;
需求:只要数据stuName 相同,则说明是两条重复的记录
以下为去重方法。三个方法。效率1 >2>3 推荐使用第一条
[sql] view plain copy print?
1. Select * from stuinfo a where not exists(select 1 from stuinfo where stuName=a.stuName and ID<a.ID)
2. select a.* from stuinfo a join (select min(ID)ID,stuName from stuinfo group by stuName) b on a.stuName=b.stuName and a.ID=b.ID
3. select * from stuinfo a where ID=(select min(ID) from stuinfo where stuName=a.stuName)
Select * from stuinfo a where not exists(select 1 from stuinfo where stuName=a.stuName and ID<a.ID)
select a.* from stuinfo a join (select min(ID)ID,stuName from stuinfo group by stuName) b on a.stuName=b.stuName and a.ID=b.ID
select * from stuinfo a where ID=(select min(ID) from stuinfo where stuName=a.stuName)
1、查找全部重复记录
Select * From 表 Where 重复字段 In (Select 重复字段 From 表 Group By 重复字段 Having Count(*)>1)
2、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断
select * from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
3、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录
delete from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
and rowid not in (select min(rowid) from people group by peopleId having count(peopleId )>1)
4、查找表中多余的重复记录(多个字段)
select * from vitae a where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
5、删除表中多余的重复记录(多个字段),只留有rowid最小的记录
delete from vitae a where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
and rowid not in (select min(rowid) from vitae group by peopleId,seq having count(*)>1)
6、查找表中多余的重复记录,不包含rowid最小的记录
select * from vitae a where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by peopleId,seq having count(*) > 1)
and rowid not in (select min(rowid) from vitae group by peopleId,seq having
本回答被网友采纳SELECT * FROM t_info a WHERE ((SELECT COUNT(*) FROM t_info WHERE Title = a.Title) > 1) ORDER BY Title DESC.
1、查找全部重复记录
Select * From 表 Where 重复字段 In (Select 重复字段 From 表 Group By 重复字段 Having Count(*)>1).
2、过滤重复记录(只显示一条)
Select * From HZT Where ID In (Select Max(ID) From HZT Group By Title).
注:此处显示ID最大一条记录
扩展资料
有两个以上的重复记录,一是完全重复的记录,也即所有字段均重复的记录,二是部分关键字段重复的记录,比如Name字段重复,而其他字段不一定重复或都重复可以忽略。
一、对于第一种重复,比较容易解决,使用select distinct * from tableName就可以得到无重复记录的结果集。如果该表需要删除重复的记录(重复记录保留1条),可以按以下方法删除
1、select distinct * into #Tmp from tableName.
2、drop table tableName.
3、select * into tableName from #Tmp.
4、drop table #Tmp.
发生这种重复的原因是表设计不周产生的,增加唯一索引列即可解决。
二、这类重复问题通常要求保留重复记录中的第一条记录,操作方法如下:
假设有重复的字段为Name,Address,要求得到这两个字段唯一的结果集 :
1、select identity(int,1,1) as autoID, * into #Tmp from tableName.
2、select min(autoID) as autoID into #Tmp2 from #Tmp group by Name,autoID.
3、select * from #Tmp where autoID in(select autoID from #tmp2).
本回答被网友采纳有哪些方法可以从sql查询结果中去除重复的数据?
去除SQL查询结果中重复数据的方法多种多样,以下将逐一介绍。首先,使用DISTINCT关键字是去除重复行的简便方法。此关键字在返回结果集时会自动过滤掉重复的记录,实现快速去重。其次,GROUP BY语句结合聚合函数(如COUNT, MAX, MIN, SUM, AVG等)通常用于统计操作,但同样能用于去除重复数据。通过分组,可以...
sql中删除重复数据
1、查找表中多余的重复记录,重复记录是根据单个字段来判断。2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录。3、查找表中多余的重复记录(多个字段)。4、删除表中多余的重复记录(多个字段),只留有rowid最小的记录。
在SQL的SELECT查询的结果中,消除重复记录的方法是( )。
【答案】:C SQL的核心是查询。SQL的查询命令也称作SELECT命令,它的基本形式由SELECT-FROM-WHERE查询块组成。其中SELECT说明要查询的字段,如果查询的字段需去掉重复值,则要用到DISTINCT短语;FROM说明要查询的字段来自哪个表或哪些表,可以对单个表或多个表进行查询,WHERE说明查询条件,即选择元组的条件。
sql查询去掉重复记录
1、打开要去掉重复数据的数据库,这里新建一张含有重复数据的user表做示例,如下图所示:2、输入“select * from user where name in (select name from user group by name having count(name) > 1) ”sql语句,点击运行可以看到查询出了数据库中user表的重复数据。3、通过“delete from user whe...
sql中怎么删除两条重复记录并保留一条
将数据去重复后暂存到临时表#a中 select distinct * into #a from table1 where 条件 delete table1 where 删除限制条件 insert into table1 select * from #a -将暂存的数据插回数据库 drop table #a -删除临时表 注:当前的数据库,每一个表都应该有一个标志字段,以保证记录不完全重复,...
mysql查询去掉重复数据
在MySQL中,处理数据时,我们常常需要去除重复的记录,这时候可以借助distinct关键字和group by语句来实现。distinct关键字用于对指定字段进行去重,只需在查询语句中添加该字段名前的distinct即可,例如:SELECT distinct column_name FROM table_name。而group by则更为灵活,它允许我们按照一个或多个字段对...
SQL查询,如何去除重复的记录?
首先,先说明一个问题。这样的结果出现,说明系统设计是有问题的。其次删除重复数据,你要提供你是什么数据库。不同数据库会有不同的解决方案。关键字Distinct 去除重复,如下列SQL,去除Test相同的记录;1. select distinct Test from Table2. 如果是要删除表中存在的重复记录,那就逻辑处理,如下:3....
sql统计行数,但是需要去重中间的重复数据
userId: user id url: url visited by the userSELECT userId, COUNT(DISTINCT url)FROM tab GROUP BY userId ORDER BY COUNT(DISTINCT url) DESC
SQL查询,如何去除重复的记录?
去除重复,如下列SQL,去除Test相同的记录;1.select distinct Test from Table 2.如果是要删除表中存在的重复记录,那就逻辑处理,如下:3.select Test from Table group by Test having count(test)>1 4.先查询存在重复的数据,后面根据条件删除 还有一个更简单的方法可以尝试一下:select aid,coun...
如何使用SQL DISTINCT关键字消除数据表中的重复记录?
假设有一个名为CUSTOMERS的表,包含ID、NAME、AGE、ADDRESS和SALARY等字段。如果我们想查看所有独特的薪水记录,而不希望看到重复的SALARY值,可以使用以下SQL语句:sql SELECT DISTINCT SALARY FROM CUSTOMERS ORDER BY SALARY;执行这个查询前,如果直接使用SELECT SALARY FROM CUSTOMERS ORDER BY SALARY,可能...