python向mysql中插入数字字符串日期总结

Posted a389678070

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python向mysql中插入数字字符串日期总结相关的知识,希望对你有一定的参考价值。

import pymysql
# 连接数据库

conn = pymysql.connect(
host="10.62.1.1",
port=3306,
user="root",
password="root",
database="fe_auto",
charset="utf8"
)

# 生成游标对象
cursor = conn.cursor()
case_id = 11111
operator = ‘zcy‘
from _datetime import datetime
case_status = 1
time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print(time)
# 执行插入数据操作 字符串处理
sql = "insert into test_result(case_id, operator, operate_time, test_status) values (" + str(case_id) +
",‘" + operator + "‘,‘" + time +"‘,"+ str(case_status)+")"
cursor.execute(sql)
conn.commit()

如果插入数字,需要转为字符型:str(case_id); 如果插入字符,需要使用单引号来表示字符:‘" + operator + "‘;如果插入日期格式,需要先转为字符,然后再单引号:

time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
‘" + time +"‘

如果字符串有%,例如a = "a%a%a",需要做下转义,改为a = "a%%a%%a"
 






























以上是关于python向mysql中插入数字字符串日期总结的主要内容,如果未能解决你的问题,请参考以下文章

MySQL学习数据类型

Python MySQL 错误 1064 插入日期时间字符串

如何向mysql数据库中插入日期

MySQL数据类型/属性/增删改查(14)

java向mysql插入时间,时间日期格式化

python向mysql插入数据一直报TypeError: must be real number,not str