1. Unix是分时系统
2. Oracle集中约束类型:unique,not null ,check, primary key, foreign key
3. pl sql块结构:变量声明,可执行代码,异常处理
4. 数据库中存储过程和函数的区别
5.varchar2没有默认长度必须制定长度
6.检查型异常
7.阅读代码,try catch finally ....执行
8. oracle数据库细节
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;

被折叠的 条评论
为什么被折叠?



