mysql 连接-左连接-右连接-内连接

创建日期: 2022-11-01 15:06 | 作者: 风波 | 浏览次数: 15 | 分类: MySQL
select 
    *
from
    kemu
left join score on kemu.id = score.id
select   
*
from
  kemu
right join score on kemu.id = score.id
select
*
from
   kemu
join score on kemu.id = score.id

来源:https://zhuanlan.zhihu.com/p/147191773?utm_source=wechat_session

15 浏览
10 爬虫
0 评论