上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 40 下一页
摘要: Python一次性获取各个业务对接的数据量 根据表名模糊查找或者表明列表 # -*- coding: utf-8 import json import pandas as pd import pymysql import time def main(): dataSum = [] # 数据总量 da 阅读全文
posted @ 2021-03-09 16:26 宝山方圆 阅读(189) 评论(0) 推荐(0) 编辑
摘要: single.get("tablelist") 上述获取的是一个列表list 一种比较恶心的办法,将list以字符串的形式拼接在SQL语句中 if "共享平台" in single.get("key"): sql = "select " \ "table_schema, " \ "table_nam 阅读全文
posted @ 2021-03-09 16:11 宝山方圆 阅读(262) 评论(0) 推荐(0) 编辑
摘要: """ 用辗转相除法求最大公约数的算法如下: 两个正整数a和b(a>b),它们的最大公约数等于a除以b的余数c和b之间的最大公约数。 比如10和25,25除以10商2余5,那么10和25的最大公约数,等同于10和5的最大公约数。 """ def gongyue(a, b): """ 求最大公约数 : 阅读全文
posted @ 2021-03-04 15:25 宝山方圆 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 查询mysql中非系统表的数据表行数 且倒排 select table_schema,table_name,table_rows from information_schema.tables where table_schema != 'information_schema' and table_s 阅读全文
posted @ 2021-01-29 16:14 宝山方圆 阅读(160) 评论(0) 推荐(0) 编辑
摘要: MySQL查询表注释和字段注释信息 -- 查询表注释 select table_schema, table_name, table_comment from information_schema.tables where table_schema = 'xxx' and table_name = ' 阅读全文
posted @ 2020-08-14 10:31 宝山方圆 阅读(2862) 评论(0) 推荐(0) 编辑
摘要: 软件下载地址:http://www.greenxf.com/soft/287026.html 下载了之后:Listener state:Listening [not support] 红字 找到了如下链接,搞定! 参考链接:https://blog.csdn.net/EM_boy/article/d 阅读全文
posted @ 2020-07-03 11:20 宝山方圆 阅读(835) 评论(0) 推荐(0) 编辑
摘要: mysql创建新用户,并且赋予权限 use mysql; grant select on *.* to "xxx"@'%' identified by 'xxx'; flush privileges; 阅读全文
posted @ 2020-06-03 15:30 宝山方圆 阅读(801) 评论(0) 推荐(0) 编辑
摘要: Linux之解决命令行cat命令中文乱码 临时解决cat中文乱码 cat test.txt | iconv -f GBK -t UTF-8 【转自】:https://blog.csdn.net/qq_33521184/article/details/89347082 阅读全文
posted @ 2020-05-28 10:59 宝山方圆 阅读(1191) 评论(1) 推荐(0) 编辑
摘要: console.time和console.timeEnd用法 分享: console.time和console.timeEnd这两个方法可以用来让WEB开发人员测量一个javascript脚本程序执行消耗的时间。随着WEB应用越来越重要,JavaScript的执行性能也日益受到重视,WEB开发人员知 阅读全文
posted @ 2020-05-15 09:31 宝山方圆 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 代码量极少,但是比pdfminer实现的功能强大。(主观感受,不代表他人) # -*- coding: utf-8 # File : pdfpdfplumberRead.py # Author : baoshan import pdfplumber path = "D:\\nianjian.md.p 阅读全文
posted @ 2020-05-08 14:34 宝山方圆 阅读(2615) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 40 下一页