代码拉取完成,页面将自动刷新
-- 创建油气集输管道温度数据记录表
CREATE TABLE OilGasPipelineTempData (
ID INT AUTO_INCREMENT PRIMARY KEY,
RecordTime TIMESTAMP,
PipelineSection VARCHAR(50),
Temp_Value FLOAT,
Temp_Threshold FLOAT,
AlarmStatus INT,
EquipmentID VARCHAR(50),
MaintenanceDate DATE
);
-- 插入示例数据
INSERT INTO OilGasPipelineTempData (RecordTime, PipelineSection, Temp_Value, Temp_Threshold, AlarmStatus, EquipmentID, MaintenanceDate)
VALUES
-- 数据记录1
('2024 - 11 - 01 08:00:00', 'Section - 001', 25.0, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录2
('2024 - 11 - 01 08:15:00', 'Section - 001', 25.5, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录3
('2024 - 11 - 01 08:30:00', 'Section - 001', 26.0, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录4
('2024 - 11 - 01 08:45:00', 'Section - 001', 26.5, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录5
('2024 - 11 - 01 09:00:00', 'Section - 001', 27.0, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录6
('2024 - 11 - 01 09:15:00', 'Section - 001', 27.5, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录7
('2024 - 11 - 01 09:30:00', 'Section - 001', 28.0, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录8
('2024 - 11 - 01 09:45:00', 'Section - 001', 28.5, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录9
('2024 - 11 - 01 10:00:00', 'Section - 001', 29.0, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录10
('2024 - 11 - 01 10:15:00', 'Section - 001', 29.5, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录11
('2024 - 11 - 01 10:30:00', 'Section - 001', 30.0, 30.0, 1, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录12
('2024 - 11 - 01 10:45:00', 'Section - 001', 29.8, 30.0, 1, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录13
('2024 - 11 - 01 11:00:00', 'Section - 001', 29.6, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录14
('2024 - 11 - 01 11:15:00', 'Section - 001', 29.4, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录15
('2024 - 11 - 01 11:30:00', 'Section - 001', 29.2, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录16
('2024 - 11 - 01 11:45:00', 'Section - 001', 29.0, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 数据记录17
('2024 - 11 - 01 12:00:00', 'Section - 001', 28.8, 30.0, 0, 'TempSensor - 001', '2024 - 10 - 15'),
-- 为另一个管道段插入数据
-- 数据记录18
('2024 - 11 - 01 12:15:00', 'Section - 002', 23.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录19
('2024 - 11 - 01 12:30:00', 'Section - 002', 23.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录20
('2024 - 11 - 01 12:45:00', 'Section - 002', 24.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录21
('2024 - 11 - 01 13:00:00', 'Section - 002', 24.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录22
('2024 - 11 - 01 13:15:00', 'Section - 002', 25.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录23
('2024 - 11 - 01 13:30:00', 'Section - 002', 25.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录24
('2024 - 11 - 01 13:45:00', 'Section - 002', 26.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录25
('2024 - 11 - 01 14:00:00', 'Section - 002', 26.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录26
('2024 - 11 - 01 14:15:00', 'Section - 002', 27.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录27
('2024 - 11 - 01 14:30:00', 'Section - 002', 27.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录28
('2024 - 11 - 01 14:45:00', 'Section - 002', 28.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录29
('2024 - 11 - 01 15:00:00', 'Section - 002', 28.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录30
('2024 - 11 - 01 15:15:00', 'Section - 002', 29.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录31
('2024 - 11 - 01 15:30:00', 'Section - 002', 29.5, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录32
('2024 - 11 - 01 15:45:00', 'Section - 002', 30.0, 25.0, 1, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录33
('2024 - 11 - 01 16:00:00', 'Section - 002', 29.8, 25.0, 1, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录34
('2024 - 11 - 01 16:15:00', 'Section - 002', 29.6, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录35
('2024 - 11 - 01 16:30:00', 'Section - 002', 29.4, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录36
('2024 - 11 - 01 16:45:00', 'Section - 002', 29.2, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录37
('2024 - 11 - 01 17:00:00', 'Section - 002', 29.0, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20'),
-- 数据记录38
('2024 - 11 - 01 17:15:00', 'Section - 002', 28.8, 25.0, 0, 'TempSensor - 002', '2024 - 10 - 20');
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。