INNER 和 LEFT JOIN 之间缺少记录

发布于 2024-11-01 08:17:23 字数 339 浏览 5 评论 0原文

从表中选择 id = 260 595 条记录

从表中选择 id 在 table2.id = table.parent = 260 595 记录上左连接 table2

从表中选择 id 内部联接 table2 on table2.id = table.parent = 260 192 记录

找出table中哪些记录有错误(不存在)的最简单方法是什么加入以便我可以纠正它们?

谢谢。

select id from table = 260 595 records

select id from table
left join table2 on table2.id = table.parent
= 260 595 records

select id from table
inner join table2 on table2.id = table.parent
= 260 192 records

What is the easiest way to find out what records in table have wrong (nonexistent) join so I can correct them?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

何止钟意 2024-11-08 08:17:23
select id from table left join table2 on table2.id = table.parent
EXCEPT
select id from table inner join table2 on table2.id = table.parent
select id from table left join table2 on table2.id = table.parent
EXCEPT
select id from table inner join table2 on table2.id = table.parent
弃爱 2024-11-08 08:17:23

使用这个(它会给你表中的id,而表2中没有相应的记录):

select id 
  from table left join table2 
    on table2.id = table.parent
 where table.parent is null

Use this(it will give you id's in table that doesn't have corresponding records in table2):

select id 
  from table left join table2 
    on table2.id = table.parent
 where table.parent is null
萌吟 2024-11-08 08:17:23
select id from table inner join table2 on table2.id <> table.parent
select id from table inner join table2 on table2.id <> table.parent
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文