当前位置: 代码迷 >> Sql Server >> 为什么SELECT可以,但换成DELETE 就不可以了呢?解决方法
  详细解决方案

为什么SELECT可以,但换成DELETE 就不可以了呢?解决方法

热度:123   发布时间:2016-04-27 19:23:50.0
为什么SELECT可以,但换成DELETE 就不可以了呢??
select * from table b where (select sum(je) from table where cid<=b.cid) <= 65

为什么换成:

delete from table b where (select sum(je) from table where cid<=b.cid) <= 65

就不可以了呢,提示有语法错误

请问这句delete 该如何改写才能满足条件,但又不会有语法错误呢,谢谢



------解决方案--------------------
SQL code
delete tfrom t awhere (select   sum(je)   from   t where   cid   <=a.cid)   <=   65
------解决方案--------------------
delete b from table b where (select sum(je) from table where cid <=b.cid) <= 65
  相关解决方案