The creation and deletion methods of volatile tables are as follows.
...
Create
Code Block |
---|
create volatile table vtable (id1 integer, name varchar(20)); |
...
Drop
Code Block |
---|
drop table vtable; |
...
The creation and deletion methods of volatile tables are as follows.
...
Code Block |
---|
create volatile table vtable (id1 integer, name varchar(20)); |
...
Code Block |
---|
drop table vtable; |
...