DB
[DB/Oracle] NOT NULL ENABLE
hrming
2024. 7. 22. 12:14
NOT NULL = NOT NULL ENABLE
NULL = NULL DISABLE
CREATE TABLE FOO (PRIORITY_LEVEL NUMBER DEFAULT 42 NOT NULL ENABLE); // Default
CREATE TABLE FOO (PRIORITY_LEVEL NUMBER DEFAULT 42 NOT NULL);
// NOT NULL ENABLE = NOT NULL
CREATE TABLE FOO (PRIORITY_LEVEL NUMBER DEFAULT 42 NOT NULL DISABLE);
CREATE TABLE FOO (PRIORITY_LEVEL NUMBER NULL);
// NOT NULL DISABLE = NULL
참고 및 출처 :
Is there a difference between "not null" and "not null enable"?
When we define a table in Oracle we may define the columns as: "NAME" VARCHAR2(80) NOT NULL ENABLE My question is I could not understand the meaning of "ENABLE" in this statement. What would be the
stackoverflow.com
https://hello-nanam.tistory.com/11
오라클 테이블 생성 ( not null enable )
오라클 테이블 생성 ( not null enable ) 테이블 생성 시 not null enable 이라고 되어 있는것이 있다.not null 이면 not null 이지 enable 은 뭔가? 아래 예제를 살펴보자 SQL> CREATE TABLE T1 (USER_NO VARCHAR2(14 BYTE) not nu
hello-nanam.tistory.com