데이터 입력
휘발성 테이블의 데이터 입력은 다음과 같다.
iFlux> create volatile table vtable (id integer, name varchar(20));
Created successfully.
iFlux> insert into vtable values(1, 'west device');
1 row(s) inserted.
iFlux> insert into vtable values(2, 'east device');
1 row(s) inserted.
iFlux> insert into vtable values(3, 'north device');
1 row(s) inserted.
iFlux> insert into vtable values(4, 'south device');
1 row(s) inserted.
iFlux>