Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

참조 테이블의 생성 방법은 다음과 같다The method of creating the reference table is as follows.

생성

Code Block
languagesql
CREATE LOOKUP TABLE lktable (id INTEGER PRIMARY KEY, name VARCHAR(20));

참조 테이블은 Primary Key를 반드시 지정해야한다Lookup Table must specify Primary key.

삭제

Code Block
DROP TABLE lktable;

...