/
Creating and Managing Lookup Table

Creating and Managing Lookup Table


The method of creating the reference table is as follows.

Create

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


Delete

DROP TABLE lktable;



Related content