ORACLE 笔记

一、to_date   > to_date('2011-12-27 22:35:00','yyyy-mm-dd hh24:mi:ss')
二、Call procedure;
三、查询游标:select * from v$open_cursor v where v.USER_NAME ='123';
四、查询job  select * from dba_jobs;
五、PL/SQL打印值:
      在PL/SQL的command window中依次执行
SQL> set serveroutput on
SQL> exec dbms_output.put_line('123');
123
六、命名长度不超过30个字符;
七、in 中参数不超过1000个,如果多,则考虑分开写;
八、查询当前外键:select * from user_constraints c where c.constraint_type = 'R';

相关推荐