你的表是否有什么约束、触发器等?另外可以尝试用delete语句。

解决方案 »

  1.   

    截图看看,有主键不?
    delete from 表 where 主键 in (xx,xx)
      

  2.   

    delete from 表 where cUser_id='0013' and cuser_name='李晓艳'
      

  3.   

    select distinct * into #t from tb
    go
    truncate table tb
    go
    insert into tb
    select * from #t
      

  4.   

    select distinct * into #t from tb
    group by 所有字段
    go
    truncate table tb
    go
    insert into tb
    select * from #t然后给表设置一个主键