一、前期操作
1、启动MySQL(用管理员权限打开cmd)
net start mysql
#关闭是:net stop mysql
2、导包
import pymysql
3、连接数据库
host='localhost'
port=3306
db='db_eq'
user='root'
password='root'
conn=pymysql.connect(host=host,port=port,user=user,password=password,db=db)
cursor=conn.cursor()
二、创建表
1、创建表
cursor.execute("create table slf_day_area as select aname,date_format(data_date,'%Y-%m-%d') as data_date ,sum(elec) as day_elec from slf_day_cons GROUP BY cons_no,date_format(data_date,'%Y-%m-%d'),aname")
2、创建表时加注释
#创建表时加注释
cursor.execute("create table if not exists slf_ini(the_order int(11) not null comment '数据序号