Heim >Datenbank >MySQL-Tutorial >Oracle 表中的列带有default值的陷阱

Oracle 表中的列带有default值的陷阱

WBOY
WBOYOriginal
2016-06-07 16:46:221061Durchsuche

在Oracle中,对于表的列可以为其指定默认值,这样在insert数据的时候,如果该列不出现在insert语句中的时候,会为其赋上默认值.注意这

在Oracle中,对于表的列可以为其指定默认值,这样在insert数据的时候,如果该列不出现在insert语句中的时候,会为其赋上默认值.注意这里是该列不出现在insert语句中,而不是该列的值为空值的时候.如下面的表:
create table test(id number(10),name varchar2(20) default 'name')
当用下面的SQL语句插入行的时候,会给name列赋默认值.
insert into test(id) values(1)
查询结果为:select * from test

ID NAME

1 name

当用下面的SQL语句插入行的时候,不会给name列赋默认值.
insert into test values(2,null)
查询结果发现ID为2的行的name的值为空:select * from test

ID NAME

1 name

2  

select * from test where name is null 能将ID为2的行查询出来.
同样,在通过JAVA代码用JDBC,一些ORM框架插入数据的时候,也需要注意同样的问题.

上面的代码插入的行,name列也不会被赋值为默认值,将##1处改为sta.setString(2, "")同样插入的是空值(null).

更多Oracle相关信息见Oracle 专题页面 ?tid=12

linux

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn