- 博客(7)
- 资源 (2)
- 收藏
- 关注
原创 【错误记录】python-ModuleNotFoundError: No module named ‘mglearn‘
错误:绘制散点图矩阵时出错,找不到对应包 解决:pip install mglearn
2021-04-26 21:45:48
301
原创 【错误记录】xshell-Xftp上传文件失败,错误说明为:Permission is not allowed
记录 通过xftp上传jdk失败,permission is not allowed 解决: 更改文件权限: [root@lixian1 opt]# ll total 0 drwxr-xr-x. 2 root root 6 Apr 24 16:04 module drwxr-xr-x. 2 root root 6 Apr 24 16:04 software [root@lixian1 opt]# chmod 777 module/ [root@lixian1 opt]# chmod 777 sof
2021-04-24 16:41:32
1898
1
原创 【shell记录】1.0
一、命令篇 linux中 chmod +x 和 chmod u+x的区别 u 代表用户 g 代表用户组 o 代表其他 a 代表所有 chmod u+x somefile 只授予这个文件的所属者执行的权限而 chmod +x somefile 和 chmod a+x somefile 是一样的
2021-04-22 17:24:09
125
原创 【错误记录】mysql-使用null
IS NULL: 当列的值是 NULL,此运算符返回 true。 IS NOT NULL: 当列的值不为 NULL, 运算符返回 true。 <=>: 比较操作符(不同于 = 运算符),当比较的的两个值相等或者都为 NULL 时返回 true。 注意: 切勿使用where 字段 = null ...
2021-04-22 14:58:18
193
原创 【错误记录】mysql-Every derived table must have its own alias
【错误记录】mysql-Every derived table must have its own alias select * from (select * from employees order by hire_date desc limit 3) order by hire_date limit 1 错误原因:每个派生出来的表必须有一个自己的别名 错误解决:通过as字段添加别名即可 select * from (select * from employees order by hire_dat
2021-04-22 14:29:58
126
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅