摘要:
数据库维护之时,报错1292 sql如下 update 表1 left join 表2 on 表1.关联字段 = 表2.关联字段 set 表1.更新字段 = 表2.字段 where 表2.字段 != '' and 表2.字段 !='#VALUE!' and 表2.字段 != 0 and 表2.字段 阅读全文
摘要:
因为数据量太大,需要用x轴滑块选择范围看数据 同时,范围内的数据维度太多,导致图形比较乱 需要将trace绘制到不同的子图中 产生了将x轴的滑块滑动范围同步的需求 实现方法是共享x轴 import plotly as py from plotly import graph_objects as go 阅读全文