摘要: left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录 right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录 inner join(等值连接) 只返回两个表中联结字段相等的行 举例如下: 表A记录如下: aID aNum 1 a20050111 阅读全文
posted @ 2021-10-04 17:31 Henry` 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 查找被占用的端口 netstat -tln #查看端口的使用情况 netstat -tln|grep 8080 #只查看端口8080的使用情况 查看端口属于哪个程序?端口被哪个程序占用 lsof -i :8080 杀死占用端口的进程 kill -9 进程id 阅读全文
posted @ 2021-10-04 16:01 Henry` 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 1、卸载python3 rpm -qa|grep python3|xargs rpm -ev --allmatches --nodeps 2、 删除所有残余文件 whereis python3 |xargs rm -frv 3、查看现有安装的python whereis python 阅读全文
posted @ 2021-10-04 15:38 Henry` 阅读(2865) 评论(0) 推荐(0) 编辑