NSERT INTO root.lc.dev.sensor.sf6

To insert data into the table “root.lc.dev.sensor.sf6” based on the provided data, you can use the following SQL query:

INSERT INTO root.lc.dev.sensor.sf6 (monitor_point, sf6_concentration, o2_concentration, temperature, humidity, status)
VALUES ('Monitor Point 1', 1000, 20.5, 25.0, 50.0, 'Normal');

INSERT INTO root.lc.dev.sensor.sf6 (monitor_point, sf6_concentration, o2_concentration, temperature, humidity, status)
VALUES ('Monitor Point 2', 1100, 21.5, 26.0, 51.0, 'High');

-- Add more INSERT statements as needed for additional data points

你可能感兴趣的:(前端,linux,javascript)