📜  流入数据库添加测量 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:09.900000             🧑  作者: Mango

代码示例1
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"