Oracle-NULL-Value-1

NULL 含义解释与使用

转载:https://www.cnblogs.com/adamgq/p/12449941.html
转载:https://www.cnblogs.com/wgbs25673578/p/5470437.html

什么是NULL?

在我们不知道具体有什么数据的时候,也即未知,可以用NULL,我们称它为空,ORACLE 中,含有空值的表列长度为零。

ORACLE 允许任何一种数据类型的字段为空,除了以下两种情况

1、主键字段(primary key),
2、定义时已经加了 NOT NULL 限制条件的字段

说明

1、等价于没有任何值、是未知数
2、NULL 与 0、空字符串、空格都不同
3、对空值做加、减、乘、除等运算操作,结果仍为空
4、NULL 的处理使用 NVL 函数
5、比较时使用关键字用 "is null" 和 "is not null"
6、空值不能被索引,所以查询时有些符合条件的数据可能查不出来,count(*) 中,用 nvl(列名,0)处理后再查
7、排序时比其他数据都大(索引默认是降序排列,小→大),所以 NULL 值总是排在最后

使用方法

SQL> select 1 from dual where null=null;
没有查到记录

SQL> select 1 from dual where null='';
没有查到记录

SQL> select 1 from dual where ''='';  
没有查到记录

SQL> select 1 from dual where null is null;
        1
---------
        1

SQL> select 1 from dual where nvl(null,0)=nvl(null,0);
        1
---------
        1

对空值做加、减、乘、除等运算操作,结果仍为空

SQL> select 1+null from dual;
SQL> select 1-null from dual;
SQL> select 1*null from dual;
SQL> select 1/null from dual;

查询到一个记录

设置某些列为空值

update table1 set 列1=NULL where 列1 is not null;

现有一个商品销售表 sale,表结构为

字段名 字段类型 备注
month char(6) 月份
sell number(10,2) 月销售金额
create table sale (month char(6),sell number);
insert into sale values('200001',1000);
insert into sale values('200002',1100);
insert into sale values('200003',1200);
insert into sale values('200004',1300);
insert into sale values('200005',1400);
insert into sale values('200006',1500);
insert into sale values('200007',1600);
insert into sale values('200101',1100);
insert into sale values('200202',1200);
insert into sale values('200301',1300);
insert into sale values('200008',1000);
-- (注意:这条记录的sell值为空)
insert into sale(month) values('200009');
commit;

共输入 12 条记录

SQL> select * from sale where sell like '%';
查询到 11 记录

结果说明

查询结果说明此 SQL 语句查询不出列值为 NULL 的字段

此时需对字段为 NULL 的情况另外处理

SQL> select * from sale where sell like '%' or sell is null;
SQL> select * from sale where nvl(sell,0) like '%';
查询到12记录.

ORACLE 中 空字符串的应用

SELECT CASE WHEN  '' IS NULL THEN 'A' ELSE 'B' END FROM DUAL;
SELECT NVL('','AAA')  FROM DUAL;
SELECT NVL(NULL,'AAA') FROM DUAL;
SELECT NVL(' ','AAA') FROM DUAL;

ORACLE 与 MYSQL 中 空字符串 有所不同

-- MYSQL中所有不为 NULL 的值
SELECT * FROM TABLE WHERE COL_1 != ''
-- ORACLE 中不返回任何值
SELECT * FROM TABLE WHERE COL_1 != ''

但对于 char 和 varchar2 类型的数据库字段中的null和空字符串是否有区别呢?

测试1

create table test (a char(5),b char(5));
SQL> insert into test(a,b) values('1','1');
SQL> insert into test(a,b) values('2','2');
-- 按照上面的解释,b字段有值的
SQL> insert into test(a,b) values('3','');
SQL> insert into test(a) values('4');
SQL> select * from test;

-- 按照上面的解释,应该有一条记录,但实际上没有记录
SQL> select * from test where b='';
未选定行

-- 按照上面的解释,应该有一跳记录,但实际上有两条记录。
SQL> select * from test where b is null;

SQL>update table test set b='' where a='2';
SQL> select * from test where b='';
未选定行

-- 显示3条记录
SQL> select * from test where b is null;

测试结果说明,对 char 和 varchar2 字段来说,’’就是null;但对于where 条件后的’’ 不是 null。
对于缺省值,也是一样的!

create table TEST_CLOB( a CLOB not null);
create table TEST_CHAR( b CHAR(3) not null);
create table TEST_NCLOB( c NCLOB not null);
create table TEST_NVARCHAR2( d NVARCHAR2(10) not null);
create table TEST_VARCHAR2( e VARCHAR2(10) not null);
insert into TEST_CLOB (a) values ('');
insert into test_char (b) values ('');
insert into TEST_NCLOB (c) values ('');
insert into TEST_NVARCHAR2 (d) values ('');
insert into TEST_VARCHAR2 (e) values ('');
-- 提示都是
-- ORA-01400:无法将 NULL 插入
-- (UserName.TableName.ColumnName)

这其实和程序开发人员理解的不太一样,如 C# 或者 Java 中

string phoneNO=null;
string phoneNO="";

这两条语句均会将值插入 phone(电话)列,但第 1 条语句插入的是 NULL 值,第 2 条语句插入的是空字符串。
第 1 种情况的含义可被解释为 “电话号码未知” ,而第 2 种情况的含义可被解释为 “该人员没有电话,因此没有电话号码”

结论

但人家 Oracle 就是这样,在查询语句中区分 null 和 '',但是在某些函数中 null 与 '' 等价
在赋值语句中如果类型是 char varchar2 则不区分 null 和 ''
Contents
  1. 1. NULL 含义解释与使用
    1. 1.1. 什么是NULL?
    2. 1.2. ORACLE 允许任何一种数据类型的字段为空,除了以下两种情况
    3. 1.3. 说明
    4. 1.4. 使用方法
    5. 1.5. 但对于 char 和 varchar2 类型的数据库字段中的null和空字符串是否有区别呢?
    6. 1.6. 结论
|