标签:驱动模块 hal 密码 通用 mys roo 查询 cut 图形界面
#安装模块 pip install pymysql
# 增加 insert into 表名(列1,列2,....) values(值1,值2,...) # 删除 delete from 表名 ; # 删除表中所有数据! delete from 表名 where 条件; # 修改 update 表名 set 列1=值1,列2=值2,....; #不加条件,修改所有列!~ update 表名 set 列1=值1,列2=值2,....where 条件; select * from students where sex =‘男‘; insert into students(name,sex,age,birthday,phone,addr) values(‘刘帅‘,‘女‘,20,now(),‘17600950805‘,‘山西‘) ; update students set sex=‘男‘ where name =‘刘帅‘ delete from students where name =‘刘晒
def my_execute(sql,params): ‘‘‘非查询通用功能! sql语句, 参数列表‘‘‘ # 2.连接 conn = pymysql.connect(host=‘39.98.39.173‘,port=13306,user=‘root‘,passwd=‘root‘,db=‘1909C2‘,c harset=‘utf8‘) print(conn) # 3. 获取游标 cur = conn.cursor() # 4. 执行sql num = cur.execute(sql,params) #print(f‘影响行数:{num}‘) conn.commit() # 必须手动提交到数据库! # 5. 释放资源 cur.close() conn.close() # 返回影响行数! return num
sql =‘insert into students(name,sex,age,birthday,phone,addr)
values(%s,%s,%s,%s,%s,%s)‘
sql =‘insert into students(name,sex,age,birthday,phone,addr)
import pymysql
标签:驱动模块 hal 密码 通用 mys roo 查询 cut 图形界面
原文地址:https://www.cnblogs.com/yhj1096/p/13924566.html