使用Python操作SQL数据库(mysql)

本文档详细介绍了如何使用Python的pymysql模块连接到MySQL数据库,进行创建、删除数据库与表,以及插入、删除、修改和查询数据的操作。在执行SQL语句时,通过游标cursor进行操作,并采用try-except结合rollback来防止数据误操作。
摘要由CSDN通过智能技术生成
本文章介绍Python对mysql的连接以及一些基本操作
import pymysql

# 连接数据库
connect = pymysql.connect(host='localhost', port='3306',user='root', password='root', database = 'test')
# 获取游标
cursor = connect.cursor()

# 删除库
# dropDatabase = 'drop database if exists test '
# cursor.execute(dropDatabase)
# 创建新的库
# createDatabase = 'create database test'
# cursor.execute(createDatabase)
# 删除表
dropTable = 'drop Table if EXISTS testTable'
cursor.execute(dropTable)
# 创建新的表
createTable = 'create Table testTable(id INT  auto_increment PRIMARY KEY,NUMBER int NOT NULL )'
cursor.execute(createTable)
# 插入数据
try:
    insertData = 'insert into testTable values (0,1), (0,2), (0,3), (0,4), (0,5)'
    cursor.execute(insertData)
    connect.commit()
except:
    connect.rollback()
# 删除数据
try:
    deleteData = 'delete from testTable where NUMBER > 5'
    
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值