码迷,mamicode.com
首页 > 数据库 > 详细

pymysql 插入数据

时间:2020-07-18 13:35:09      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:roo   import   使用   color   ring   first   exec   cursor   code   

import pymysql
 
# 打开数据库连接
db = pymysql.connect("localhost",
             "root",
             "123456",
             "TESTDB" ) # 使用cursor()方法获取操作游标 cursor = db.cursor() # SQL 插入语句 sql = "INSERT INTO USER(FIRST_NAME, LAST_NAME, AGE, SEX, INCOME) VALUES (‘%s‘, ‘%s‘, %s, ‘%s‘, %s)" % (‘qika, la, 20, M, 2000) try: cursor.execute(sql) # 执行sql语句
  db.commit() except: db.rollback()# 发生错误时回滚
# 关闭数据库连接 db.close()

 

 

已知测试数据后,向表内插入数据:

如:first_name=‘ka‘

      last_name=‘qi‘

     age=‘19‘

    sex=‘m‘

     income=‘2001‘

 

con.execute(‘insert into USER表 values("%s", "%s","%s", "%s")‘  % \ (first_name,last_name,age,sex,income))

#即通过变量的形式,直接往表内插入数据。

 

pymysql 插入数据

标签:roo   import   使用   color   ring   first   exec   cursor   code   

原文地址:https://www.cnblogs.com/QiKa/p/13334696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!