欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python mysql简单的增删改查

程序员文章站 2022-03-03 17:41:48
...
import pymysql

#打开数据库连接
db=pymysql.Connect(host="*",port=3306,user="*",password="123456",db="mysqltest",charset="utf8")
#创建游标对象
cursor=db.cursor()
#需要执行的SQL语句
# sql="""create table student(
#     id int not null,
#     name varchar(20),
#     age int
# )"""
#创建表
# sql="""insert into student(id,name,age)
#         values(1,"zhangsan",12)
# """
#查询
#sql="select * from student"
#更新
#sql="update student set age=age+1"
#删除
sql="delete from student where name='zhangsan'"
#执行语句
cursor.execute(sql)
#查询一个
#data1=cursor.fetchone()
##查询所有
#data2=cursor.fetchall()
#提交语句
db.commit()

db.close()
#print(data2)
#print(type(data2))