摘要: **约束条件:** FOREIGN KEY:在子表中定义一个级表约束 REFERENCES:指定表和父表中的列 ON DELETE CASCADE:当删除父表时,级联删除子表纪录 ON DELETE SET NULL:将子表的相关依赖纪录外键置为 null create table teacher 阅读全文
posted @ 2020-07-04 15:17 王清河 阅读(243) 评论(0) 推荐(0) 编辑
摘要: # 处理数据 ## insert --1.向表中插入所有列(所有不需要写列名) insert into emp values (1, 'tom_111', 'clerk', 7839, sysdate, 8500, 10000, 10); --2.向表中插入部分列 insert into emp(e 阅读全文
posted @ 2020-07-04 15:16 王清河 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 求出谁的工资比 scott 工资高 1.先求出scott工资 select sal from emp where ename = 'SCOTT'; 2.查询谁的工资比scott高 select * from emp where sal > (select sal from emp where ena 阅读全文
posted @ 2020-07-04 15:14 王清河 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 按部门统计员工人数:部门号,部门名称,各部门人数 select d.deptno, d.dname, count(e.empno) from dept d, emp e where d.deptno = e.deptno group by d.deptno, d.dname 上诉结果没有出现40号部 阅读全文
posted @ 2020-07-04 15:09 王清河 阅读(176) 评论(0) 推荐(0) 编辑