sql删除重复数据只保留一条
我用如下语句是报错,deletefromt_prices_jgwhere(t_prices_jg.fitemcode,t_prices_jg.foper,t_prices...
我用如下语句是报错,
delete from t_prices_jg where
(t_prices_jg.fitemcode,t_prices_jg.foper,t_prices_jg.fopernote,t_prices_jg.fsb) in (select fitemcode,foper,fopernote,fsb from t_prices_jg group by fitemcode,foper,fsb having count(*)>1)
and t_prices_jg.fid not in (select min(fid) from t_prices_jg group by fitemcode,foper,fsb having count(*)>1)
报错内容为:
消息 102,级别 15,状态 1,第 3 行
',' 附近有语法错误。
消息 156,级别 15,状态 1,第 4 行
关键字 'and' 附近有语法错误。
但是我检查不出哪里的语法错误,真是……
请哪位大能帮忙看看 展开
delete from t_prices_jg where
(t_prices_jg.fitemcode,t_prices_jg.foper,t_prices_jg.fopernote,t_prices_jg.fsb) in (select fitemcode,foper,fopernote,fsb from t_prices_jg group by fitemcode,foper,fsb having count(*)>1)
and t_prices_jg.fid not in (select min(fid) from t_prices_jg group by fitemcode,foper,fsb having count(*)>1)
报错内容为:
消息 102,级别 15,状态 1,第 3 行
',' 附近有语法错误。
消息 156,级别 15,状态 1,第 4 行
关键字 'and' 附近有语法错误。
但是我检查不出哪里的语法错误,真是……
请哪位大能帮忙看看 展开
3个回答
展开全部
Delete from tablea a
where 记录号 not in (select max(记录号) from tablea b
where b.col1=a.col1 and b.col2=a.col2 )
--取出重复数据中记录号最大的,然后删除不是最大记录号的数据
追问
不好意思,我需要取的是MIN
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
案例:
id 姓名 课程名称 分数
1 张三 数学 69
2 李四 数学 89
3 张三 数学 69
删除除了自动编号不同,其他都相同的学生冗余信息
------------------------------------------------------------------------------------------------------
按常理来说,这个sql语句应该是:
delete tablename where id not in(select min(id) from tablename group by name,kecheng,fenshu);
这种写法在sqlserver或者oracle中是支持的,但是mysql目前是不支持的,会报类似错:You can't specify target table 'tablename' for update ,这是因为在mysql中不能同时查询一个表的数据再同时进行删除.
目前网上流行的一种解法是:
1)创建一个临时表,讲要查询的列的存入临时表中
create table temp as select ...
2)在temp表和原始表中进行操作
delete from tablename
3)drop temp...
但是这种做法,不仅浪费空间资源,同时也缺乏友好性。通过观察我们发现这类查询要解决的是如何将子查询中的表与主查询中的表区分开来,因此我们可以考虑用别名的方法,将子查询的结果放到一个别名中。
完整的sql语句如下:
DELETE FROM tablename where id not in (select bid from (select min(id) as bid from tablename group by name,kecheng,fenshu) as b ) ;
解释:
select bid from (select min(id) as bid from tablename group by name,kecheng,fenshu) as b
这个子查询的目的是从b中列出讲筛选结果,即bid的集合。
(select min(id) as bid from tablename group by name,kecheng,fenshu) as b
将分组结果中的最小的bid当做一个心的集合当做一个心的子表b,
注意mid(id)一定要有一个别名,这里取的是bid,作为b的一个列名,因为在上一级查询中要用到这个列名。
id 姓名 课程名称 分数
1 张三 数学 69
2 李四 数学 89
3 张三 数学 69
删除除了自动编号不同,其他都相同的学生冗余信息
------------------------------------------------------------------------------------------------------
按常理来说,这个sql语句应该是:
delete tablename where id not in(select min(id) from tablename group by name,kecheng,fenshu);
这种写法在sqlserver或者oracle中是支持的,但是mysql目前是不支持的,会报类似错:You can't specify target table 'tablename' for update ,这是因为在mysql中不能同时查询一个表的数据再同时进行删除.
目前网上流行的一种解法是:
1)创建一个临时表,讲要查询的列的存入临时表中
create table temp as select ...
2)在temp表和原始表中进行操作
delete from tablename
3)drop temp...
但是这种做法,不仅浪费空间资源,同时也缺乏友好性。通过观察我们发现这类查询要解决的是如何将子查询中的表与主查询中的表区分开来,因此我们可以考虑用别名的方法,将子查询的结果放到一个别名中。
完整的sql语句如下:
DELETE FROM tablename where id not in (select bid from (select min(id) as bid from tablename group by name,kecheng,fenshu) as b ) ;
解释:
select bid from (select min(id) as bid from tablename group by name,kecheng,fenshu) as b
这个子查询的目的是从b中列出讲筛选结果,即bid的集合。
(select min(id) as bid from tablename group by name,kecheng,fenshu) as b
将分组结果中的最小的bid当做一个心的集合当做一个心的子表b,
注意mid(id)一定要有一个别名,这里取的是bid,作为b的一个列名,因为在上一级查询中要用到这个列名。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询