Python批量生成mysql数据脚本
注意
1、python脚本一定要注意空格,否则这种报错无法做出判断
2、脚本魔法 请根据自己python的路径填写
1、脚本代码
#! /root/anaconda3/bin/python import pymysql import datetime #参数值插入时间 #连接数据库 db = pymysql.connect(host='localhost', user='root', passwd='yang156122', port=3306) cur = db.cursor() # use databases cur.execute('use test') for i in range(1,5): str_i = str(i) chat_name = "chat"+str(i) remark = "remark" create_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') #sql 语句 sql = "insert into chat(id,chat_name,remark,create_time) values('%s','%s','%s','%s')" % (str_i,chat_name,remark,create_time) #执行sql cur.execute(sql) db.commit() cur.close()
2、启动脚本
python generateMysqlData.py
本文来自博客园,作者:小白啊小白,Fighting,转载请注明原文链接:https://www.cnblogs.com/ywjfx/p/14307721.html