isnull
或者
  
  isNull(rs.fields("picture"))

解决方案 »

  1.   

    IsNull("字段名") or 字段   is   null
    http://topic.csdn.net/t/20020409/16/633784.html
      

  2.   

    if object_id('tempdb..#')is not null drop table #
    go
    create table #(PIC binary(100))
    insert # select cast('test' as binary)
    insert # select null
    insert # select cast('' as binary)
    select * from # where isnull(cast(pic as varchar(100)),'')<>''
    (影響 1 個資料列)*/
      

  3.   

    SQL 中 ISNULL 要有2个参数!而且 我是写在SQL 语句中  不是判断变量!
      

  4.   

    正解:
     (SP_Picture)is not null