/
Creating and Managing Lookup Table

Creating and Managing Lookup Table

The method of creating the reference table is as follows.

생성

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

Lookup Table must specify Primary key.

삭제

DROP TABLE lktable;



Related content