---------------------------------------------------------
添加数据
Oracle中的默认日期格式‘DD-MON-YY’dd 日子(天) mon 是月
份 yy是2位的年
改日期的默认格式:
alter seesion set nls_date_format = 'yyyy-mm-dd'
==========================================================
当你在数据库中插入了null值的数据的时候,你想根据这些null来
把这个数据查出来
错误的:select * from student where birthday='';
正确的是:select * from student where birthday is null;
这是Oracle和其它数据库之间不一样的地方 请牢记
select * from student where birthday is not null;