Python
基本用法
列表与字典
选择与循环语句
函数与模块
中文转拼音
Excel操作
Panads
DOC操作
调用etcd模块
调用zookeeper模块
调用redis模块
pyinstaller打包
安装conda
使用conda打包32程序
python发送html邮件
HTTP请求
自建代理ip池
mysql操作
Python图片生成
HTML转图片
文件md5及base64
调用mongo
多进程与多线程
pyecharts绘图模块
多环境管理(Pyenv/Virtualenv)
PIP
本文档使用MrDoc发布
返回首页
-
+
mysql操作
2020年9月27日 10:00
admin
##基础操作 import pymysql conn=pymysql.connect( host='rm-wz90uqnx3gt2w62q4.mysql.rds.aliyuncs.com', port=3306, user='yunweiuser', passwd='4rfv%TGB', db='wicsg_appdb', charset='utf8' ) cursor=conn.cursor() sql="select customeraccount,truncate(fee,2) feetotal from e_reportcustomerfee_20200926 order by feetotal desc limit 10;" cursor.execute(sql) rs=cursor.fetchall() for row in rs: print(row) cursor.close() conn.close() ##SQL格式化 #将SQL中的代码换成以下语句: sql="update sign_sign_phone set count=%s,type=%s,update_time=%s where phone=%s;" cursor.execute(sql,[NUM,STATUS,updatetime,check_phone])
分享到: