delect from pool where ctype='1'

解决方案 »

  1.   

    select pool.id ,cname,  ctype, Utype
    from pool ,b
    where pool.id = b.id and utype <> 1
      

  2.   

    delete from pool where id in (select id from c where utype='1')
      

  3.   

    select pool.id ,cname,  ctype, Utype
    from pool ,b
    where pool.id = b.id and utype <> 1
      

  4.   

    delete from pool where id in (select id from b where utype = '1')
      

  5.   

    delete pool where id in (select id from b where utype = '1')