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 4 Next »


로그 테이블은 다음과 같이 간단하게 생성할 수 있다.  sensor_data 라는 테이블을 생성하고 삭제해 보도록 하자.

마크베이스에서 사용가능한 데이터 타입은 SQL 레퍼런스의 자료형 에서 확인하면 된다.


Mach> CREATE TABLE sensor_data
      (
      	  id VARCHAR(32),
          val DOUBLE
       );
Created successfully.
Elapsed time: 0.051

Mach> DROP TABLE sensor_data;
Dropped successfully.
Elapsed time: 0.025
Mach>




  • No labels