oracle中文日期 Oracle数据库中的''与NULL的
转自:http://micki.blogbus.com/logs/38238361.html
select to_char(sysdate, 'YYYY"年"MM"月"DD"日"') from dual;
另外,replace函数用法:
select replace('abccccmccc', 'm', 'c') from dual;
====================
''与null表示空
1)主键非空 ,not null 2种约束非空
2)null是未知数,不可操作,使用nvl,decode可操作
3)空值不索引 select count(aaa1) from ab01 ;不能查
select count(*) 可查出 (等价于 select count(nvl(字段,0)) )
4)比其他字段大
5)为null的条件返回false,不返回行