pymysql执行update更新操作

视频版教程 Python操作Mysql数据库之pymysql模块技术

执行update操作,雷同前面的insert操作

from pymysql import Connection

con = None

try:
    # 创建数据库连接
    con = Connection(
        host="localhost",  # 主机名
        port=3306,  # 端口
        user="root",  # 账户
        password="123456",  # 密码
        database="db_python",  # 指定操作的数据库
        autocommit=True  # 设置自动提交
    )
    # 获取游标对象
    cursor = con.cursor()
    # 使用游标对象,执行sql语句
    cursor.execute("UPDATE t_student SET age=19 WHERE id=5")
    # 确认提交
    # con.commit()
except Exception as e:
    print("异常:", e)
finally:
    if con:
        # 关闭连接
        con.close()

你可能感兴趣的:(Python,pymysql,python)