你要我们看什么?“Delete from 表1 AAA ,表2 BBB ” AAA,BBB 是字段吗?有这样写的吗?

解决方案 »

  1.   

    太着急了是这样的
    Delete from 表1 AAA ,表2 BBB where AAA.ID=33 and bbb.ID=333
    系统提示"指定要删除记录的表"
      

  2.   

    1.delete from 表1 where aaa=33
      delete from 表2 where bbb=3332.???
      delete from 表1 where 类型=5656  ?
      delete from 表2 where 类型=5656  ?
      

  3.   

    收回上面写的
    1格式不对,2的(select id from 基础表 where id=5656 )部分不是等于5656吗?何必写那么多 是不是搞错了
      

  4.   

    一个DELETE语句只能删除一个表内的东东.
      

  5.   

    delete一次只能搞一个表哈老兄要分写的
      

  6.   

    语法错误
    delete一次只能删一张表
      

  7.   

    是应该分开写,
    delete只能删除一个表内的记录