哥的神码都是浮云
-
mysql索引–普通索引,唯一索引,主键索引,参照完整性约束,数据完整性约束
— 方法1:create index– 对employee表的员工部门号列创建普通索引depart_ind — create index depart_ind on employees(员工部门号); — 对employee表的姓名和地址列创建复合索引ad_ind;– create index ad_ind on employees(姓名,地址);…
-
python的matplotlib绘制动态图形(用animation中的FuncAnimation)
%matplotlib auto# 数据透视表:# 统计各月每天的刷卡金额之和# month_day_df = pd.pivot_table(data_df,values=”刷卡金额”,index=”日”,columns=”月份”,aggfunc=np.sum)# 用折线图表示1月份每天的刷卡金额之和import matplotlib.pyplot as p…