- Python & MySQL 教程
- Python & MySQL - 主页
- Python & MySQL - 概述
- Python & MySQL - 环境设置
- Python & MySQL 示例
- Python & MySQL - 连接数据库
- Python & MySQL - 创建数据库
- Python & MySQL - 放弃数据库
- Python & MySQL - 选择数据库
- Python & MySQL - 创建表
- Python & MySQL - 放弃表
- Python & MySQL - 插入记录
- Python & MySQL - 选择记录
- Python & MySQL - 更新记录
- Python & MySQL - 删除记录
- Python & MySQL - Where 子句
- Python & MySQL - Like 子句
- Python & MySQL - 分类数据
- Python & MySQL - 使用连接
- Python & MySQL - 执行事务
- Python & MySQL - 处理错误
- Python & MySQL 有用的资源
- Python & MySQL - 快速指南
- Python & MySQL - 有用的资源
- Python & MySQL - 讨论
PHP & MySQL - 插入记录示例
Python 使用 c.execute(q) 函数在表中插入一条或多条记录,其中 c 是游标,q 是要执行的插入查询。
语法
# execute SQL query using execute() method. cursor.execute(sql) # commit the record db.commit() # get the row id for inserted record print("ID:", cursor.lastrowid) # print the number of records inserted print(mycursor.rowcount, "records inserted.")
序号 | 参数 & 说明 |
---|---|
1 | $sql 必需 - 在表中插入记录的 SQL 查询。 |
示例
尝试下列示例在表中插入记录 -
复制并粘贴下列示例为 mysql_example.ty -
#!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","root","root@123", "TUTORIALS") # prepare a cursor object using cursor() method cursor = db.cursor() sql = """INSERT INTO tutorials_tbl (tutorial_title,tutorial_author, submission_date) VALUES ('HTML 5', 'Robert', '2010-02-10'), ('Java', 'Julie', '2020-12-10'), ('JQuery', 'Julie', '2020-05-10') """ # execute SQL query using execute() method. cursor.execute(sql) # commit the record db.commit() # get the row id for inserted record print("ID:", cursor.lastrowid) # print the number of records inserted print(cursor.rowcount, "records inserted.") # disconnect from server db.close()
输出
使用 Python 执行 mysql_example.py 脚本并验证输出。
ID: 5 3 records inserted.
广告