摘要:
create or replace procedure testp is begin dbms_output.put_line('aaaa'); end; / declare i number(2) :=10; ena emp.ename%type; begin dbms_output.put_li 阅读全文
摘要:
create or replace trigger t1afterinserton persondeclare begin dbms_output.put_line('新员工入职');end; insert into person values(2,'小红',2);commit;select * f 阅读全文
摘要:
视图 视图的概念:视图就是提供一个查询的窗口,所有数据来自于原表。 查询语句创建表create table emp as select * from scott.emp;select * from emp; 创建视图【必须有dba权限】create view v_emp as select enam 阅读全文