当前位置:
首页 > Python基础教程 >
-
Python操作MySQL数据库的入门指南
MySQL是一种关系型数据库管理系统,广泛应用于各种应用程序和网站,在本篇技术博客中,我们将探讨如何使用Python操作MySQL数据库,需要的可以收藏一下
在本篇技术博客中,我们将探讨如何使用Python操作MySQL数据库。我们将首先介绍如何建立连接,然后展示如何执行基本的数据库操作(如创建表、插入数据、查询数据等)。最后,我们将通过一个详细的代码案例来巩固所学内容。
- 简介
MySQL是一种关系型数据库管理系统,广泛应用于各种应用程序和网站。Python提供了多种库来与MySQL数据库进行交互,本文将使用官方推荐的mysql-connector-python库。
-
安装MySQL Connector
在开始之前,确保已经安装了mysql-connector-python库。如果尚未安装,可以使用以下命令进行安装:
pip install mysql-connector-python
-
建立连接
为了与MySQL数据库进行交互,我们首先需要建立连接。以下代码展示了如何使用mysql.connector.connect()方法建立连接:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password"
)
print("Connected to MySQL server!")
cnx.close()
-
创建数据库
连接到MySQL服务器后,我们可以创建一个新的数据库。以下代码展示了如何使用CREATE DATABASE语句创建一个名为mydb的数据库:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password"
)
cursor = cnx.cursor()
cursor.execute("CREATE DATABASE mydb")
print("Database 'mydb' created!")
cnx.close()
-
创建表
创建数据库后,我们需要在其中创建表。以下代码展示了如何创建一个名为users的表,并为其添加id、name和email列:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password",
database="mydb"
)
cursor = cnx.cursor()
cursor.execute("""
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100),
email VARCHAR(100)
)
""")
print("Table 'users' created!")
cnx.close()
-
插入数据
创建表后,我们可以向其中插入数据。以下代码展示了如何向users表插入一条数据:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password",
database="mydb"
)
cursor = cnx.cursor()
sql = "INSERT INTO users (name, email) VALUES (%s, %s)"
val = ("John Doe", "john.doe@example.com")
cursor.execute(sql, val)
cnx.commit()
print(f"{cursor.rowcount} record(s) inserted!")
cnx.close()
-
查询数据
我们可以使用SELECT语句从表中查询数据。以下代码展示了如何从users表中查询所有数据:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password",
database="mydb"
)
cursor = cnx.cursor()
cursor.execute("SELECT * FROM users")
for row in cursor.fetchall():
print(row)
cnx.close()
8. 更新数据
要更新表中的数据,我们可以使用UPDATE语句。以下代码展示了如何更新users表中的一条数据:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password",
database="mydb"
)
cursor = cnx.cursor()
sql = "UPDATE users SET email = %s WHERE name = %s"
val = ("john.doe@newexample.com", "John Doe")
cursor.execute(sql, val)
cnx.commit()
print(f"{cursor.rowcount} record(s) updated!")
cnx.close()
-
删除数据
要从表中删除数据,我们可以使用DELETE语句。以下代码展示了如何从users表中删除一条数据:
import mysql.connector
cnx = mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password",
database="mydb"
)
cursor = cnx.cursor()
sql = "DELETE FROM users WHERE name = %s"
val = ("John Doe",)
cursor.execute(sql, val)
cnx.commit()
print(f"{cursor.rowcount} record(s) deleted!")
cnx.close()
-
详细代码案例
在本节中,我们将通过一个实际案例来巩固前面所学的内容。我们将创建一个简单的应用程序,该程序可以将用户信息添加到数据库中,并根据需要查询、更新或删除这些信息。
import mysql.connector
def connect_to_db():
return mysql.connector.connect(
host="localhost",
user="your_username",
password="your_password",
database="mydb"
)
def create_user(name, email):
cnx = connect_to_db()
cursor = cnx.cursor()
sql = "INSERT INTO users (name, email) VALUES (%s, %s)"
val = (name, email)
cursor.execute(sql, val)
cnx.commit()
cnx.close()
def get_all_users():
cnx = connect_to_db()
cursor = cnx.cursor()
cursor.execute("SELECT * FROM users")
result = cursor.fetchall()
cnx.close()
return result
def update_user_email(name, new_email):
cnx = connect_to_db()
cursor = cnx.cursor()
sql = "UPDATE users SET email = %s WHERE name = %s"
val = (new_email, name)
cursor.execute(sql, val)
cnx.commit()
cnx.close()
def delete_user(name):
cnx = connect_to_db()
cursor = cnx.cursor()
sql = "DELETE FROM users WHERE name = %s"
val = (name,)
cursor.execute(sql, val)
cnx.commit()
cnx.close()
# 添加用户
create_user("Alice", "alice@example.com")
create_user("Bob", "bob@example.com")
# 查询所有用户
users = get_all_users()
print("All users:")
for user in users:
print(user)
# 更新用户邮箱
update_user_email("Alice", "alice@newexample.com")
# 查询所有用户
users = get_all_users()
print("All users after update:")
for user in users:
print(user)
# 删除用户
delete_user("Bob")
# 查询所有用户
users = get_all_users()
print("All users after deletion:")
for user in users:
print(user)
-
总结
在本篇博客中,我们学习了如何使用Python操作MySQL数据库。我们讨论了如何建立连接、创建数据库和表、插入数据、查询数据、更新数据以及删除数据。最后,通过一个详细的代码案例来巩固所学知识。
如果你想深入了解mysql-connector-python库的其他功能,请查阅官方文档:MySQL Connector/Python Developer Guide。
以上就是Python操作MySQL数据库的入门指南的详细内容,更多关于Python操作MySQL的资料请关注其它相关文章!
原文链接:https://juejin.cn/post/7246378293245526073
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
开启SQLSERVER数据库缓存依赖优化网站性能
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比