上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 181 下一页
摘要: 报错 fitz模块报错RuntimeError: Directory ‘static/’ does not exist 原因 使用Python处理PDF文档时,需要使用fitz模块。由于Python 3.8以上版本与fitz有兼容问题,会出现以下错误信息:RuntimeError: Director 阅读全文
posted @ 2023-08-04 21:45 myrj 阅读(2007) 评论(0) 推荐(0) 编辑
摘要: . fsum //显示所有所有变量样本数 平均值 最小值 最大值 Variable | N Mean SD Min Max + pid | 7719 3.79e+08 1.55e+08 1.00e+08 2.35e+09 fid20 | 7719 3.96e+05 2.81e+05 1.00e+05 阅读全文
posted @ 2023-07-29 22:31 myrj 阅读(89) 评论(0) 推荐(0) 编辑
摘要: import random,string,re,time,sys,hashlib,pymysql,requests f=open("aa.txt","w") connect = pymysql.connect(user = 'root', password = '123456', db = 'new 阅读全文
posted @ 2023-07-29 19:12 myrj 阅读(14) 评论(0) 推荐(0) 编辑
摘要: python 问题: from mysql import connector ModuleNotFoundError: No module named 'mysql' 不能pip installl mysql不起任何作用 正确做法:pip install mysql-connector-python 阅读全文
posted @ 2023-07-29 06:55 myrj 阅读(156) 评论(0) 推荐(0) 编辑
摘要: import random,string,re,time,sys,hashlib,pymysql,requests connect = pymysql.connect(user = 'm', password = 'h', db = 'x', host = 'r', port = 3306, cha 阅读全文
posted @ 2023-07-28 07:57 myrj 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.mysqld --initialize --console 临时密码:o%%0:xG9PoEj 2.mysqld --install 3. net start mysql 4. mysql -u root -p 输入上边的临时密码 5. 修改密码: ALTER USER 'root'@'loca 阅读全文
posted @ 2023-07-27 09:31 myrj 阅读(12) 评论(0) 推荐(0) 编辑
摘要: mysql中将多个表合成一个 在MySQL中,我们可以使用多个表格来存储数据。然而,在某些情况下,我们需要将这些表格合成一个以方便数据处理和查询。下面将介绍如何在MySQL中将多个表合成一个。 CREATE TABLE new_table SELECT * FROM table_1 UNION AL 阅读全文
posted @ 2023-07-27 07:02 myrj 阅读(1054) 评论(0) 推荐(0) 编辑
摘要: (select case bq.registration_type when 1 then '国有' when 2 then '民营' when 3 then '外资' else '' end as '注册类型', bqr.revenue as '营收', '' as '总资产' from bigd 阅读全文
posted @ 2023-07-27 06:54 myrj 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 从另一电脑复制下来的MYSQL的数据文件(包括FRM IBD)快速恢复到另一MYSQL服务器过程: 1.安装mysql最好相同的版本,安装Navicate for mysql,连接相应的服务器 2.安装 mysql-utilities,地址:https://downloads.mysql.com/a 阅读全文
posted @ 2023-07-26 09:13 myrj 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 下载指定版本的MYSQLhttps://dev.mysql.com/downloads/mysql/点击Archives按钮https://downloads.mysql.com/archives/community/可以选择下载任意指定版本的安装文件 阅读全文
posted @ 2023-07-25 20:47 myrj 阅读(28) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 181 下一页