asp 如何删除sql符合条件的第一条数据

............ifrs(0)>3thensql="deleteaaawhereid=(selecttop1*fromaaawhereb='"&c&"'"endi... ......
......
if rs(0)>3 then
sql="delete aaa where id = ( select top 1 * from aaa where b='"&c&"' "
end if
......
......

如何删不掉第一行呢
少个符号,打掉了,是这样的sql="delete aaa where id = ( select top 1 * from aaa where b='"&c&"') "
展开
 我来答
bigpswd
2011-10-16 · TA获得超过585个赞
知道小有建树答主
回答量:217
采纳率:0%
帮助的人:106万
展开全部
兄弟啊,我实在是无语了!
首先DELETE AAA是个什么概念?如果AAA是个数据库表的话,那应该是DELETE FROM AAA ……
其次select top 1 * from aaa where b='"&c&"'这是一个记录集
你用ID(一个表中的一个列)去等于一个记录集,国际玩笑了吧
更多追问追答
追问
这也是网上一个朋友给我的,我调试总有问题,应该怎么写呢,就是判断假如 rs(0)>3 那么删除aaa表中符合b='"&c&"' 所有记录的第一条记录,
追答
那就是我告诉你的,但是我可不是这样告诉你的
......
......
if rs(0)>3 then
dim rs_del
set rs_del=server.CreateObject("adodb.recordset")
rs_del.open "select top 1 * from aaa where b='"&c&"' ",conn,1,1
if not rs_del.eof then
conn.execute("delete from aaa where id="&rs_del("id"))
end if
rs_del.close
set rs_del=nothing
end if
......
......
缓步莫迟疑C
2011-10-16 · TA获得超过1.1万个赞
知道大有可为答主
回答量:6217
采纳率:73%
帮助的人:6434万
展开全部
楼上的意思是让你
sql="delete from aaa where id=(select top 1 id from aaa where b='"&c&"')"
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式