-- 2020041307 / 뷰 with read only
- ORACLE
- 2020. 4. 30.
-- [11] 뷰 생성에 사용되는 다양한 옵션
-- with read only
-- with read only 차이점 : 뷰를 설정할 때 조건으로 설정한 컬럼이 아닌 컬럼에 대해서는 변경이 가능
create table emp_copy03
as
select * from emp;
create or replace view view_check30
as
select empno, ename, sal, comm, deptno
from emp_copy03
where deptno = 30;
select * from view_check30;
update view_check30
set comm = 1000;
select * from view_check30;
select * from emp_copy03;
create or replace view view_read30
as
select empno, ename, sal, comm, deptno
from emp_copy03
where deptno = 30 with read only;
select * from view_read30;
update view_read30
set comm = 2000;
'ORACLE' 카테고리의 다른 글
2020041406 /데이터 제어어 DCL(Data Control Language) 권한(Role) (0) | 2020.04.30 |
---|---|
2020040906 / -- [8] Default 제약 조건 설정 (0) | 2020.04.30 |
2020041306 / 뷰(view) 옵션 whit check option (0) | 2020.04.30 |
2020040906 / [7] Check 제약 조건 설정 (0) | 2020.04.30 |
2020041005 / sub-query(서브 쿼리) (0) | 2020.04.30 |