是的,你必须打开Sql语句人工输入delete语句将其删除。
你可能是设关键字了。

解决方案 »

  1.   

        这个问题已经有很多次了,看看这个:
       http://www.csdn.net/expert/topic/323/323966.shtm
      

  2.   

    没有设置关键字,使用如下语句都删不掉
    delete liuyan where id='12'  ??
      

  3.   

    花猫兄
    (1) select distinct * into #t1 from 你的表 where 某一列 = 值
    (2) delete 你的表 where 某一列 = 值
    (3) insert 你的表 values (select * from #t1)解释一下吧
      

  4.   

       这几句话copy 到查询分析器里面怎么会删不到?你是怎么做的?详细描述一下症状!!!!!!!!!
      

  5.   

    我的语句是   delete liuyan where name="txtname"liuyan是一个表,列名name,重复的行里包含文字txtname错误信息:invalid object name "liuyan"
      

  6.   

    或者把...where name="txtname"中的双引号改成单引号试试。
      

  7.   

    哈,成功了,要这样写
    delete cwd.liuyan where name='txtname'加分加分!
    再问一下,怎么删掉有值为空的记录?
      

  8.   

    delete cwd.liuyan where isnull(cwd.liuyan.name)
      

  9.   

    我说的有效吗?删除为空的纪录条件为:
       name is null 就能搞定了
      

  10.   

    ...where colname is null and ...