asp 删除一个表中某字段某名字的最新100条以外的所有内容 怎么写

conn.Execute("deletefromtable1whereidnotin(selecttop100idfromtable1)")找到个是删除100条以外全部的... conn.Execute("delete from table1 where id not in (select top 100 id from table1)")

找到个是删除100条以外全部的

但我想要的是,name=“中国” 这个词保留100条最新的
name="XXX" 另一个词又保留100条最新的
都在同一个表里,最好是按时间增加最新的100条
求高手帮忙
展开
 我来答
匿名用户
2012-04-23
展开全部
conn.Execute("delete from table1 where id not in (select top 100 id from table1 where name='中国' order by id desc) and id not in (select top 100 id from table1 where name='xxx' order by id desc) ")

如果不确定name='中国',只要包括中国,可以用
conn.Execute("delete from table1 where id not in (select top 100 id from table1 where name like '%中国%' order by id desc) and id not in (select top 100 id from table1 where name like '%xxx%' order by id desc) ")
更多追问追答
追问
速度很快,但太危险了,这代码试了一下,只保留中国的前100条,其它的全部帮我清空了,哭。。。。。。
我运行的时间时候是单个运行的,比如

conn.Execute("delete from table1 where id not in (select top 100 id from table1 where name='中国' order by id desc) ")
追答
肯定不能单个运行啊,要一起啊,条件必须都满足啊
我一条语句你干嘛拆开啊,拆开完全就不是一个意思了
xxx,用其他代替,还有其他name再加 and id is not in
其实你可以先在查询分析器上运行
select * from table1 where id not in (select top 100 id from table1 where name='中国' order by id desc) and id not in (select top 100 id from table1 where name='xxx' order by id desc)
看是不是你要的效果,然后在运行
做这种危险动作都不备份数据库吗
zoutianyu
2012-04-24
知道答主
回答量:47
采纳率:0%
帮助的人:5.4万
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式