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

在oracle表中插入空字段和null测试

时间:2016-06-14 10:18:11      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:

create table testTable
(
id number,
name varchar2(100)
)
select * from testTable
insert into testTable(id,name) values(1,user1)
insert into testTable(id,name) values(2,‘‘)
insert into testTable(id,name) values(3,null)

select count(id)  from testTable t where t.name=‘‘

select count(id)  from testTable t where t.name is null or t.name!=‘‘


select id,nvl(name,null) from testTable

select  id,nullif(name,1231231) from testTable





drop table testTable

 

在oracle表中插入空字段和null测试

标签:

原文地址:http://www.cnblogs.com/AmatVictorialCuram/p/5582841.html

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