join等价于inner join内连接抄,是返回两个表中都有的符合条件的行。

left join左连接,是返回左袭表知中所有的行及右表中符合条件的行。

right join右连接,是返回右表中所有的行及左表中符合条件的行。

full join全连接,是返回左表中所有的行及右表中所有的行,并按条件连接。

通常情况下,left join肯定比inner join返回的行数多道。

相关文章:

  • 2021-08-31
  • 2022-12-23
  • 2021-08-07
  • 2021-08-07
  • 2022-01-27
  • 2022-12-23
猜你喜欢
  • 2021-08-07
  • 2021-08-07
  • 2021-12-28
相关资源
相似解决方案