燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-18 9a86656c139eef8963bcf449a8985ef9bcb1299c
ys.sql
@@ -4,6 +4,11 @@
SHOW BINARY LOGS;
RESET MASTER;
create index index_yssh_gcsj_time on yssh_gcsj(time);
drop index index_yssh_gcsj_time on yssh_gcsj;
https://blog.csdn.net/qq_63161848/article/details/141591514
----------------------------------------------------------------------
create table voc_vals (
   id bigint not null primary key comment '主键',
@@ -12,6 +17,7 @@
    val double(25, 10) comment '值',
    create_time datetime comment '值'
);
create index voc_vals_val on voc_vals (val);
create index voc_vals_time on voc_vals (create_time);
----------------------------------------------------------------------