2 Star 0 Fork 0

储运21-2周起鹏/sherlock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
数据库(周起鹏).py 4.92 KB
一键复制 编辑 原始数据 按行查看 历史
储运21-2周起鹏 提交于 2024-11-02 09:23 . 数据库
-- 创建油气集输管道温度数据记录表
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');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sherlock663/sherlock.git
git@gitee.com:sherlock663/sherlock.git
sherlock663
sherlock
sherlock
master

搜索帮助