1小時(shí)學(xué)會(huì) Python操作Mysql數(shù)據(jù)庫(kù)之pymysql模塊技術(shù):https://www.bilibili.com/video/BV1Dz4y1j7Jr
執(zhí)行delete操作,雷同前面的update操作
from pymysql import Connection
con = None
try:
# 創(chuàng)建數(shù)據(jù)庫(kù)連接
con = Connection(
host="localhost", # 主機(jī)名
port=3306, # 端口
user="root", # 賬戶
password="123456", # 密碼
database="db_python", # 指定操作的數(shù)據(jù)庫(kù)
autocommit=True # 設(shè)置自動(dòng)提交
)
# 獲取游標(biāo)對(duì)象
cursor = con.cursor()
# 使用游標(biāo)對(duì)象,執(zhí)行sql語(yǔ)句
cursor.execute("delete from t_student WHERE id=5")
# 確認(rèn)提交
# con.commit()
except Exception as e:
print("異常:", e)
finally:
if con:
# 關(guān)閉連接
con.close()