휘발성 테이블의 생성과 삭제 방식은 다음과 같다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; |
...
휘발성 테이블의 생성과 삭제 방식은 다음과 같다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; |
...