想要查询多个表,看看数据是否存在

发布于 2024-12-21 22:24:35 字数 117 浏览 0 评论 0原文

我至少有4张桌子。

我希望能够使用一个表作为“主表”,并查询接下来的 3 个表,以查看主表中存在的关键字段中的值是否存在于其他 3 个表中。我想对主表中的所有行执行此操作。

有什么建议吗?

I have at least 4 tables.

I want to be able to use one table as the 'master' and query the next 3 tables to see if the value in the key field that exists within the master table exists in any of the other 3 tables. I want to do this for all rows within the master table.

Any tips?

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

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

发布评论

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

评论(1

孤独岁月 2024-12-28 22:24:35

类似的东西

Select Master.ID From Master Inner Join Detail1 on Master.ID = Detail1.ID
Union
Select Master.ID From Master Inner Join Detail2 on Master.ID = Detail2.ID
Union
Select Master.ID From Master Inner Join Detail3 on Master.ID = Detail3.ID

可能需要摆弄语法,因为你没有说哪个 DBMS

Something like

Select Master.ID From Master Inner Join Detail1 on Master.ID = Detail1.ID
Union
Select Master.ID From Master Inner Join Detail2 on Master.ID = Detail2.ID
Union
Select Master.ID From Master Inner Join Detail3 on Master.ID = Detail3.ID

Might need to twiddle with the syntax as you didn't say which DBMS

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文