📅  最后修改于: 2022-03-11 14:55:16.944000             🧑  作者: Mango
create database
create user "" with password ''
To see the all databases: SHOW DATABASES
Enter the Database: use
To see all tables inside the database: SHOW MEASUREMENTS
grant all on to
insert data (Here Motionsense is a Measurement which is similar to the table
name of SQL): INSERT MotionSense,SensorType=Gyro roll=1.2,yaw=5,pitch=3
See the data of the Measurements: SELECT * FROM "MotionSense"