view에 사용되는 with check option
view를 통해 insert 가 되는데 with check option 을 사용 여부에 따라 뷰의 조건에 해당하는데이터만 삽입,삭제,수정 할 수 있다. --예제를 보시면 훨씬 쉽게 이해 하실 수 있을 겁니다. ex) create table testtable (empno number(10) , deptno number(10), name varchar2(20))tablespace users; insert into testtable values(10,20,'abc');insert into testtable values(20,30,'ccc'); 이런식으로 대충 몇개 쭈-욱 데이터를 넣어요! 이제 view를 만들어봅시다. 1. with check option을 사용하지 않은 viewcreate view testv..
2006.10.20