请教mysql 如何按时间删除多余的记录?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请教mysql 如何按时间删除多余的记录?相关的知识,希望对你有一定的参考价值。
有一个表,要定期删除 按time字段排序的老记录(超过N条记录的老数据),类似先进先出的删除方法,只保留固定的新记录,sql语句该如何写了?
先写好一段删除的程序,并建立procedure.手机上打的,可能有些小问题,实在需要回家了可以帮你改好。Drop procedure if exist name;
create procedure name()
Begin
-- 计算总共记录数
Set @nb= select count(表里任意变量)from table;
Select delete from table
order by time
limite @nb-N;
end;
call name;
然后去建立一个event, envent可以调用上面的程序写call name即可。然后设置程序的时间,这样每过一段时间程序就自动运行了!:)追答
@nb-N, 总记录数减N,删除超过N的记录。
参考技术A 你是想要问如何定期还是如何删除?先说简单的,删除 delete from table where time < 日期
再说定期,一般通过服务器crontab来执行
写一个php文件,里面就是删除的程序
然后设置crontab每天执行一次就ok 参考技术B 表名:test, 日期字段名:t, 保留记录条数:10
delete from test where t < ( select min(b.t) from ( select t2.t from test t2 order by t2.t desc limit 9,1 ) as b);
不容易啊,总算出来了。本回答被提问者采纳
MySQL删除重复数据只保留一条
面试碰到一个MySQl的有趣的题目,如何从student表中删除重复名字的行,并保留最小id的记录?
很遗憾当时没有做出来,回家搜索了一番,发现利用子查询的可以很快解决。
1、删除表中多余的重复记录,重复记录是username判断,只留有id最小的记录
delete from studentwhere username in ( select username from studentgroup by username having count(username)>1) and id not in (select min(id) as id from studentgroup by username having count(username)>1 )
(上面这条语句在mysql中执行会报错:
执行报错:1093 - You can‘t specify target table ‘student‘ for update in FROM clause
原因是:更新数据时使用了查询,而查询的数据又做了更新的条件,mysql不支持这种方式。oracel和msserver都支持这种方式。
怎么规避这个问题?
再加一层封装,
delete from student where username in (select username from ( select username from student group by username having count(username)>1) a) and id not in ( select id from (select min(id) as id from student group by username having count(username)>1 ) b)
注意select min(id) 后面要有as id.
其实还有更简单的办法(针对单个字段):
delete from student where id not in (select id from (select min(id) as id from student group by username) b);
拓展:
2、删除表中多余的重复记录(多个字段),只留有id最小的记录
delete from student a where (a.username,a.seq) in (select username,seq from (select username,seq from a group by username,seq having count(*) > 1) t1) and id not in ( select id from (select min(id) from vitae group by username,seq having count(*)>1) t2)
参考文章:
https://blog.csdn.net/anya/article/details/6407280
以上是关于请教mysql 如何按时间删除多余的记录?的主要内容,如果未能解决你的问题,请参考以下文章