Skip to content

Instantly share code, notes, and snippets.

@kimki1124
Created March 7, 2017 12:47
Show Gist options
  • Save kimki1124/e5037db4f8a8e95ab52ccb77b55c3c00 to your computer and use it in GitHub Desktop.
Save kimki1124/e5037db4f8a8e95ab52ccb77b55c3c00 to your computer and use it in GitHub Desktop.
[ORACLE] 테이블, 테이블 생성, 데이터 타입, 제약조건
CREATE TABLE EX2_6(
COL_NULL VARCHAR2(10),
COL_NOT_NULL VARCHAR2(10) NOT NULL
);
INSERT INTO EX2_6 VALUES ('AA', '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment