毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 数据库 >> 正文

oracle,sql查询空值赋不了值

更新时间:2013-4-21:  来源:毕业论文

oracle,sql查询空值赋不了值

select a.payment_name,        a.payment_desc,        (select nvl(b.enabled, 0)           from ecm_payment b          where a.payment_name = b.payment_name            and b.store_id = 2) as enabled   from ecm_platform_payment a  where a.enabled = 1

执行结果enabled为什么会是空值啦。。毕业论文 
求解。。

他的 值是 "" 而并非 是 null

你用 decode(enabled,null,0,'',null,0,enabled)

用这个  试一下 吧

select a.payment_name,
       a.payment_desc,
       NVL(select nvl(b.enabled, 0)
          from ecm_payment b
         where a.payment_name = b.payment_name
           and b.store_id = 2),0) as enabled
  from ecm_platform_payment a
 where a.enabled = 1

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。