上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 341 下一页
摘要: 在本地生成的csv文件没有乱码。在服务器上生成的csv文件乱码。 在本地生成的csv文件,编码为ANSI编码,用Excel打开没有乱码。 在服务器上生成的csv文件,编码为UTF-8,用Excel打开显示乱码。 python open函数encoding encoding表示的是返回的数据采用何种编 阅读全文
posted @ 2022-06-11 11:52 emanlee 阅读(349) 评论(0) 推荐(0)
摘要: 和普通的表一样的方法,区别是 db_table 要和mysql新建的视图的名字相同 pymysql.err.OperationalError: (1054, "Unknown column id in 'field list'") pymysql.err.OperationalError: (105 阅读全文
posted @ 2022-06-11 10:49 emanlee 阅读(230) 评论(0) 推荐(0)
摘要: MySQL没有PIVOT功能 SELECT userid, MAX(CASE WHEN `type` = 1 THEN itemcount END) AS type_1, MAX(CASE WHEN `type` = 2 THEN itemcount END) AS type_2, MAX(CASE 阅读全文
posted @ 2022-06-11 08:30 emanlee 阅读(203) 评论(0) 推荐(0)
摘要: SELECT * FROM `mytable` WHERE CHARACTER_LENGTH(xingming)=2SELECT CONCAT(LEFT(xingming,1),' ',RIGHT(xingming,1)) FROM `mytable` WHERE CHARACTER_LENGTH( 阅读全文
posted @ 2022-06-11 07:39 emanlee 阅读(491) 评论(0) 推荐(0)
摘要: Error: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions 问题原因:期望使用的端口已经被占用解决方法:更换使用端口 阅读全文
posted @ 2022-06-10 20:53 emanlee 阅读(644) 评论(0) 推荐(0)
摘要: MySQL新版默认使用caching_sha2_password作为身份验证插件,而旧版是使用mysql_native_password当连接MySQL时报错“plugin caching_sha2_password could not be loaded”时,可换回旧版插件。 操作mysql数据库 阅读全文
posted @ 2022-06-10 14:12 emanlee 阅读(240) 评论(0) 推荐(0)
摘要: pycharm Cannot find declaration to goto 方法一: 指定解释器 查看项目文件结构是不是空的: 方法二: 关闭, 删除 .idea 文件夹 重新打开项目 阅读全文
posted @ 2022-06-09 18:59 emanlee 阅读(640) 评论(0) 推荐(0)
摘要: 同步远程仓库到本地 git pull=git fetch + merge $ git pull --rebase origin mastererror: cannot pull with rebase: You have unstaged changes.error: please commit o 阅读全文
posted @ 2022-06-07 19:44 emanlee 阅读(2189) 评论(0) 推荐(0)
摘要: 查看nginx启动用户,将静态资源赋权给改用户访问即可。如静态资源目录:/data/django/static赋权:chmod 755 /data/django/static -Rsettings.py# Static files (CSS, JavaScript, Images)# https:/ 阅读全文
posted @ 2022-06-06 10:13 emanlee 阅读(285) 评论(0) 推荐(0)
摘要: uwsgi 启动或停止 启动: uwsgi --ini uwsgi.iniuwsgi.pid 是ini配置文件中配置的 停止: uwsgi --stop uwsgi.pid 例子uwsgi --stop ./script/uwsgi.pid查看日志tail -50f ./script/uwsgi.l 阅读全文
posted @ 2022-06-06 09:23 emanlee 阅读(7749) 评论(0) 推荐(0)
上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 341 下一页