delete * from article where content=NULL

解决方案 »

  1.   

    delete from article where content='' or content=null
      

  2.   

    delete * from article where content is null;
    or
    delete * from article where trim(content) is null;
      

  3.   

    你的字段是什么类型的!
    如果是int的话这样就不对了!
      

  4.   

    delete article where content='' or content is null
      

  5.   

    delete article where content='' or content is null or content=0 or content='1900-01-01'
      

  6.   

    感谢各位大方回贴,欢迎有空再来.
    delete article where  content is null;
    为正确答案.
      

  7.   

    delete from article where content is null.
    为正确答案.