码迷,mamicode.com
首页 > 数据库 > 详细

字段中有空的时候 进行逻辑运算,mysql 与 oracle 处理函数IFNULL() 与 nvl() ,选取NULL 值 。

时间:2019-01-21 19:15:43      阅读:430      评论:0      收藏:0      [点我收藏+]

标签:ns2   bsp   span   记录   ifnull   pre   oracle   first   ddr   

mySQL数据库:

 

SELECT id_p,IFNULL(math,0)+IFNULL(english,0) 总分 from mytest_brian1

 

Oracle 数据库:

select  id_p , nvl(address,0)* age from Persons2 ;

 

选取在 "Address" 列中带有 NULL 值的记录呢?

SELECT LastName,FirstName,Address FROM Persons WHERE Address IS NUL   

 

选取在 "Address" 列中不带有 NULL 值的记录呢? 

SELECT LastName,FirstName,Address FROM Persons WHERE Address IS NOT NULL

字段中有空的时候 进行逻辑运算,mysql 与 oracle 处理函数IFNULL() 与 nvl() ,选取NULL 值 。

标签:ns2   bsp   span   记录   ifnull   pre   oracle   first   ddr   

原文地址:https://www.cnblogs.com/brianlai/p/10300049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!