摘要:
卸载xshell 删除xshell注册表 打开运行框(快捷键WIN+R),输入regedit.exe 删除计算机\HKEY_CURRENT_USER\Software\Netscape目录 重新安装xshell 【转自】https://www.cnblogs.com/daryl-blog/p/120 阅读全文
摘要:
古代君王大事记 一、三皇五帝 1.五帝:黄帝、颛顼、帝喾、尧、舜 2.黄帝——涿鹿之战、人文初祖 二、夏 1.禹——三过家门而不入、建夏 2.启——禹传启、家天下 3.桀——暴政亡国 三、商 1.汤——鸣条之战、建商 2.盘庚——迁都 3.纣——抚梁易柱、酒池肉林、鹿台 四、周 1.周文王——西伯拘 阅读全文
摘要:
知道前三位,后四位,查找归属地是聊城的手机号,代码简写如下 from phone import Phone prefixPhone = '1xx' middlePhone = '0000' suffixPhone = 'xxxx' for i in range(0, 10000): stri = s 阅读全文
摘要:
Python一次性获取各个业务对接的数据量 根据表名模糊查找或者表明列表 # -*- coding: utf-8 import json import pandas as pd import pymysql import time def main(): dataSum = [] # 数据总量 da 阅读全文
摘要:
single.get("tablelist") 上述获取的是一个列表list 一种比较恶心的办法,将list以字符串的形式拼接在SQL语句中 if "共享平台" in single.get("key"): sql = "select " \ "table_schema, " \ "table_nam 阅读全文
摘要:
""" 用辗转相除法求最大公约数的算法如下: 两个正整数a和b(a>b),它们的最大公约数等于a除以b的余数c和b之间的最大公约数。 比如10和25,25除以10商2余5,那么10和25的最大公约数,等同于10和5的最大公约数。 """ def gongyue(a, b): """ 求最大公约数 : 阅读全文
摘要:
查询mysql中非系统表的数据表行数 且倒排 select table_schema,table_name,table_rows from information_schema.tables where table_schema != 'information_schema' and table_s 阅读全文
摘要:
MySQL查询表注释和字段注释信息 -- 查询表注释 select table_schema, table_name, table_comment from information_schema.tables where table_schema = 'xxx' and table_name = ' 阅读全文
摘要:
软件下载地址:http://www.greenxf.com/soft/287026.html 下载了之后:Listener state:Listening [not support] 红字 找到了如下链接,搞定! 参考链接:https://blog.csdn.net/EM_boy/article/d 阅读全文
摘要:
mysql创建新用户,并且赋予权限 use mysql; grant select on *.* to "xxx"@'%' identified by 'xxx'; flush privileges; 阅读全文