Python3 notes

简介: Python3 notes

插入数据

插入数据使用 "INSERT INTO" 语句:

demo_mysql_test.py:

向 sites 表插入一条记录。

importmysql.connectormydb = mysql.connector.connect(  host="localhost",   user="root",   passwd="123456",   database="runoob_db")mycursor = mydb.cursor()sql = "INSERT INTO sites (name, url) VALUES (%s, %s)"val = ("RUNOOB", "https://www.runoob.com")mycursor.execute(sql, val)mydb.commit()    # 数据表内容有更新,必须使用到该语句print(mycursor.rowcount, "记录插入成功。")

执行代码,输出结果为:

1记录插入成功

相关文章
|
6月前
|
人工智能 Shell 编译器
C/C++编译工具:makefile | AI工程化部署
Makefile是一种用于管理和组织源代码的工具,通常用于构建和编译软件项目。它由一系列规则组成,每个规则指定如何生成一个或多个目标文件。Makefile也包括变量和注释,使得用户能够灵活地配置和定制构建过程。【1月更文挑战第3天】
189 3
|
6月前
|
移动开发 Python
Python3 notes
Python3 notes
|
6月前
|
网络协议 Ubuntu Linux
如何搭建权威DNS服务器
【1月更文挑战第3天】
295 2
|
6月前
|
关系型数据库 Serverless 分布式数据库
@PolarDB,你的动手体验搭子,来啦
「PolarDB开发者大会」,现场将带来更多PolarDB免费体验,欢迎前来现场体验与互动。
@PolarDB,你的动手体验搭子,来啦
|
6月前
|
小程序
Qt实现一个卡片橱窗
Qt实现一个卡片橱窗
202 0
|
6月前
|
JavaScript 开发者
Vue状态管理: 在Vuex中,什么是mutation?它们应该如何使用?
Vue状态管理: 在Vuex中,什么是mutation?它们应该如何使用?
163 4
|
6月前
|
Python
Python3 notes
Python3 notes
|
6月前
|
数据库 Python
Python3 notes
Python3 notes
|
6月前
|
Python
Python3 notes
Python3 notes
|
6月前
|
人工智能 程序员 云栖大会
盘点2023年我用过的AI大模型,国内也能免费用
盘点2023年我用过的AI大模型,国内也能免费用
405 1
 盘点2023年我用过的AI大模型,国内也能免费用