求  如何删除  A 表 B表  中的所有关于  C  的所有信息????????????????、

解决方案 »

  1.   

    delete a from a right join on a.cid = c.id
      

  2.   

    DELETE FROM a,b,c,d where (条件=C) 多看看书把
      

  3.   


    DELETE FROM A,B WHERE Condition=C
      

  4.   

    delete from A   where 条件=c
    delete from B   where 条件=c
      

  5.   

    DELETE FROM ttyonghumingzi , ttquanxian   WHERE yonghumingzi = 111  怎么提示错误啊  
      

  6.   

    delete FROM ttyonghumingzi , ttquanxian WHERE
     ttyonghumingzi.yonghumingzi =C.yonghumingzi and
    ttquanxian.yonghumingzi =C.yonghumingzi and 
    C.yonghumingzi =111
      

  7.   


    delete from A   where 条件=c
    delete from B   where 条件=c这个是最简单也最有郊的做法.试一下.
      

  8.   

    求 如何删除 A 表  B表 中的 所有关于字段YONGHU=111 的所有信息????????????????、
      

  9.   

    只能俩表 连成一个 再删了 唉我 OUT了
      

  10.   

    delete from A where 条件=c
    delete from B where 条件=c
      

  11.   

    delete from A where 条件 like '%c%'
    delete from B where 条件 like '%c%'??????????????????????????????????????????