度量快速开发平台-专业、快速的软件定制快开平台

标题: oracle is null 和is not null [打印本页]

作者: caixuqad    时间: 2020-5-7 16:23
标题: oracle is null 和is not null
当字符串为空时,在where 使用 is null来判断。 当字符串不为空时,在where 使用 is not null来判断。
例如:
create table test
(
   stuno number(10) primary key,
   stuname varchar2(50)
)
insert into test(stuno) values(10)
insert into test(stuno,stuname) values(11,' ')
select * from test where stuname is null才会取到所有值。
而select * from test where stuname=''不行。


作者: caixuqad    时间: 2020-5-7 16:24

作者: fteair    时间: 2020-5-7 17:00

作者: 张兴康    时间: 2020-5-8 13:21





欢迎光临 度量快速开发平台-专业、快速的软件定制快开平台 (http://bbs.delit.cn/) Powered by Discuz! X3.2