2021年12月14日

摘要: 1.导出指定表的数据 mysqldump -t database -u username -ppassword --tables table_name1 table_name2 table_name3 >D:\db_script.sql 导出数据不导出结构 mysqldump -t 数据库名 -ur 阅读全文

posted @ 2021-12-14 11:27 Great-great 阅读(1625) 评论(0) 推荐(0) 编辑


2021年10月12日

摘要: rem 定义变量延迟环境,关闭回显 @echo off&setlocal enabledelayedexpansion rem 读取a.txt所有内容 for /f "eol=* tokens=*" %%i in (a.txt) do ( rem 设置变量a为每行内容 set a=%%irem 如果 阅读全文

posted @ 2021-10-12 16:01 Great-great 阅读(710) 评论(0) 推荐(0) 编辑


2021年8月27日

摘要: from threading import Threaddef test1(a): while 1: print adef test2(a): a["a"] = 2if __name__ == "__main__": a = {"a": 1} t1 = Thread(target=test1, ar 阅读全文

posted @ 2021-08-27 16:43 Great-great 阅读(47) 评论(0) 推荐(0) 编辑


2021年8月19日

摘要: 参考:https://www.cnblogs.com/aspirant/p/9214485.html 参考:https://blog.codinglabs.org/articles/theory-of-mysql-index.html 阅读全文

posted @ 2021-08-19 17:40 Great-great 阅读(16) 评论(0) 推荐(0) 编辑

摘要: 下载本地 sz 上传 rz 打包命令.tar.gz格式解压:[*******]$ tar zxvf FileName.tar.gz压缩:[*******]$ tar zcvf FileName.tar.gz DirName 查看运行的进程:ps -ef | grep python 查看运行的端口:n 阅读全文

posted @ 2021-08-19 17:34 Great-great 阅读(37) 评论(0) 推荐(0) 编辑

摘要: #************************************************************** 设置超时的装饰器 ************************************************************** # 装饰器设置超时时间# c 阅读全文

posted @ 2021-08-19 17:30 Great-great 阅读(527) 评论(0) 推荐(0) 编辑

摘要: # 在库中查询所有表名select table_name from information_schema.tables where table_name like 'xtp_exch_sec_%' and TABLE_SCHEMA = 'xtp2_auto' # mysql 判断字符串中是否有另一个 阅读全文

posted @ 2021-08-19 17:27 Great-great 阅读(58) 评论(0) 推荐(0) 编辑


2020年12月21日

摘要: 01-.tar格式解包:[*******]$ tar xvf FileName.tar打包:[*******]$ tar cvf FileName.tar DirName(注:tar是打包,不是压缩!)02-.gz格式解压1:[*******]$ gunzip FileName.gz解压2:[*** 阅读全文

posted @ 2020-12-21 14:58 Great-great 阅读(191) 评论(0) 推荐(0) 编辑


2020年12月16日

摘要: 下载地址:https://www.jetbrains.com/pycharm/download/#section=windows 亲测可以使用,不需要任何破解工具 阅读全文

posted @ 2020-12-16 13:59 Great-great 阅读(452) 评论(0) 推荐(0) 编辑


Copyright © 2024 Great-great
Powered by .NET 9.0 on Kubernetes