제약의 종류와 설정
DDL 과 DCL 은 자동 커밋이 되기 때문에 rollback을 할 수 없다. 즉, rollback과 커밋은 DML 이 대상이 된다.null : null을 허용할 수 있음(기본값)예시 코드//테이블 생성create table newbook( bookid number, bookname varchar2(20), publisher varchar2(20), price number);//테이블 보기desc newbook;insert into newbook values(1, '재미있는 자바', '코스타미디어', 30000);insert into newbook values(2, '신나는? 자바', null, null);insert into newbook(bookname, bookid, price, p..
2024. 6. 18.