Skip to content

Instantly share code, notes, and snippets.

@kimki1124
Created March 7, 2017 12:46
Show Gist options
  • Save kimki1124/3f6346a5c95c67de223127310a9a1679 to your computer and use it in GitHub Desktop.
Save kimki1124/3f6346a5c95c67de223127310a9a1679 to your computer and use it in GitHub Desktop.
[ORACLE] 테이블, 테이블 생성, 데이터 타입, 제약조건
CREATE TABLE [스키마.]테이블명(
컬럼1 컬럼1_데이터타입 [NULL, NOT NULL],
컬럼2 컬럼2_데이터타입 [NULL, NOT NULL],
)[TABLESPACE 테이블스페이스명];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment