01 2015 档案
摘要:1. hierarchical query语义分析:2. hierarchical query脚本测试:---删除已存在表drop table test;-- Create tablecreate table TEST( orgno NUMBER(10) not null, deptno NUMBE...
阅读全文
摘要:触发器实现功能:当向表A中插入一行数据时,同时往表B中插入一条相关数据。---创建测试样表create table person(pid number(10));create table task(tid number(10));---创建插入触发器:当插入表person时,自动插入task表cre...
阅读全文