小弟很菜,谢谢大哥哥们

解决方案 »

  1.   

    select * frome table where note=''
    可能可以吧。
    我昨天也在考虑这个事情。
      

  2.   

    不行 我试过了 如果你在sql 中显示的是'' 那么可以 但是显示的是<null>的,就选不出来
      

  3.   

    打错了
     是:select * from table where note=null 但是这样不行
      

  4.   

    NULL不等于任何值,像空格什么 的,
      

  5.   

    select * from table where note='' 我可以呀
      

  6.   

    我用的sql 7.0   如果表里的值是''时 可以用 select * from table where note=''
     但是当表里的值是<null> 时,select * from table where note=‘’或null 时就不行了