创建视图和序列

1、将员工信息和员工工资水平封装成view视图,并通过视图查询每个工资水平有多少人
2、创建一个序列,并创建一个表,用序列给表添加记录

—创建视图(连接薪资表的grade与员工表的sal)
create view emp_test4
as select e.empno,e.ename,e.sal,sl.grade
from a_demo_emp e
join a_demo_salleve sl
on e.sal>=sl.losal and e.sal<=sl.hisal

select * from emp_test4

创建视图和序列_第1张图片

2.–创建表
create table notell
(
id varchar2(10),
name varchar2(10),
constraint ID_PRIMARY primary key(id)
);
–创建序列
create sequence seq_notell
increment by 1
start with 1
–给表插入值
insert into notell
values (seq_notell.nextval,‘李四’);
commit;
insert into notell
values (seq_notell.nextval,‘顽固’);
commit;

select * from notell
在这里插入图片描述

你可能感兴趣的:(创建视图和序列)