摘要: 一、内连接 同时将两表作为参考对象,根据ON(或WHERE)后给出的两表的条件将两表连接起来。结果是满足连接条件的交集即A∩B={x∣x∈A∧x∈B} 显式内连接(使用JOIN... ON关键字) SELECT columns FROM table1 JOIN table2 ON table1.co 阅读全文
posted @ 2024-10-24 16:28 珂k 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 一、显示 二、原因分析 出现这个错误的原因是MySQL 8 之前的版本中加密规则是mysql_native_password,而在MySQL 8之后,加密规则是caching_sha2_password。 三、解决办法 升级连接客户端 还原加密规则为mysql_native_password ALT 阅读全文
posted @ 2024-10-24 12:59 珂k 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 链接:1661. 每台机器的进程平均运行时间 - 力扣(LeetCode) 前提条件: 表: Activity + + + | Column Name | Type | + + + | machine_id | int | | process_id | int | | activity_type | 阅读全文
posted @ 2024-10-24 10:36 珂k 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 链接:197. 上升的温度 - 力扣(LeetCode) 前提条件: 表: Weather + + + | Column Name | Type | + + + | id | int | | recordDate | date | | temperature | int | + + + id 是该表 阅读全文
posted @ 2024-10-24 09:55 珂k 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 链接:1581. 进店却未进行过交易的顾客 - 力扣(LeetCode) 前提条件: 表:Visits + + + | Column Name | Type | + + + | visit_id | int | | customer_id | int | + + + visit_id 是该表中具有唯 阅读全文
posted @ 2024-10-24 09:15 珂k 阅读(2) 评论(0) 推荐(0) 编辑