ASP只保存数据库中最新的100条数据,100条以后的数据自动删除?
谢谢,这个问题郁闷了我一个多月了。现在终于解决!答案很满意,但是要小改一下delete*fromtable1whereidnotin(selecttop100idfrom...
谢谢,这个问题郁闷了我一个多月了。现在终于解决!
答案很满意,但是要小改一下
delete * from table1 where id not in (select top 100 id from table1) 中的*号要去掉!
改为:
conn.Execute("delete from table1 where id not in (select top 100 id from table1)") 展开
答案很满意,但是要小改一下
delete * from table1 where id not in (select top 100 id from table1) 中的*号要去掉!
改为:
conn.Execute("delete from table1 where id not in (select top 100 id from table1)") 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询