/
Creating and Managing Volatile Table

Creating and Managing Volatile Table

The creation and deletion methods of volatile tables are as follows.

Create

create volatile table vtable (id1 integer, name varchar(20));

Delete

drop table vtable;

Related content