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


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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM