oracle中is not null  作为查询条件和查询结果的区别?

解决方案 »

  1.   

    能解释一下什么是is not null作为查询结果吗
      

  2.   

    是指一个和 空值null匹配,一个和is not null 字符串匹配?
      

  3.   

    就是select  name is not null from  tb_user    和select  name from tb_user  where  name is not  null    的 区别
      

  4.   

    就是select  name is not null from  tb_user    和select  name from tb_user  where  name is not  null    的 区别
      

  5.   

    没见过这个写法 select  name is not null from  tb_user
      

  6.   

    is not Null写在哪也算是查询条件吧
      

  7.   

    在my sql数据库中这样写是没问题的   但是在oracle中会报错  所以想知道区别在哪
      

  8.   

    问题是ORACLE里面没有select  name is not null from  tb_user这种写法,怎么说区别呢
      

  9.   

    所以  is not  null  只能写在  where 后面