Skip to content
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));

Drop

drop table vtable;
Last updated on