摘要:
-- 方法1:create index-- 对employee表的员工部门号列创建普通索引depart_ind -- create index depart_ind on employees(员工部门号); -- 对employee表的姓名和地址列创建复合索引ad_ind;-- create ind 阅读全文
posted @ 2023-04-21 11:05
哥的神码都是浮云
阅读(399)
评论(0)
推荐(0)
%matplotlib auto# 数据透视表:# 统计各月每天的刷卡金额之和# month_day_df = pd.pivot_table(data_df,values="刷卡金额",index="日",columns="月份",aggfunc=np.sum)# 用折线图表示1月份每天的刷卡金额之 阅读全文
from tkinter import *import tkinter as tkfrom tkinter import Tk, Label,ttkfrom PIL import Image, ImageTk# # 显示结果 def get_result(): key_v2 = key_entry. 阅读全文