Python3操作mysql
时间:2021-07-01 10:21:17
帮助过:16人阅读
#创建游标对象:
cur = conn.cursor()
#关闭游标
cur.close()
#关闭连接
conn.close()
3.查询:
sql="select * from info"
cur.execute(sql)
#返回查询的一条记录
data=cur.fetchone()
#返回查询的所有结果
data=cur.fetchall()
4.插入:
sql2 =
"insert into info(NAME,address ) VALUES(%s,%s)"
5.更改数据
sql3="update tfundinfo set c_state=‘1‘ where c_fundcode="%s" "%(m)
cur.execute(sql3)
conn.commit()
6.删除数据
sql=
"DELETE FROM EMPLOYEE WHERE AGE > ‘%d‘" % (20)
cur.execute(sql)
conn.commit()
7.查询返回dict类型数据
#在创建游标时,指定返回结果为dict
cur=conn.cursor(cursor=pymysql.cursors.DictCursor)
sql="select * from info"
cur.execute(sql)
#返回查询的一条记录
data=cur.fetchone()
#返回查询的所有结果
data=cur.fetchall()
Python3操作mysql
标签:style sel http 游标 查询 code install mys python