Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

데이터 입력

휘발성 테이블의 데이터 입력은 다음과 같다.

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>
  • No labels