摘要: import requests # 导入request模块def apiSort(): url = r'http://api.wpbom.com/api/ancien.php' params1 = {"msg": "","b":"1"} response = requests.get(url=url 阅读全文
posted @ 2022-03-17 15:21 琪琪博客 阅读(550) 评论(0) 推荐(0)
摘要: merge into 表1 tt --表是需要更新的表using 表2 t -- 关联表on (tt.id=t.id) --关联条件when matched then --匹配关联条件,作更新处理update settt.字段=t.字段 阅读全文
posted @ 2022-03-17 15:14 琪琪博客 阅读(479) 评论(0) 推荐(0)