gpt4 book ai didi

mysql - 为此构建一个 SQL 查询

转载 作者:可可西里 更新时间:2023-11-01 07:57:22 25 4
gpt4 key购买 nike

我正在尝试执行以下操作,但我没有足够的 MySQL 经验。有人可以告诉我对此的查询是什么吗?

我有一个包含 2 个表的数据库

  • 简介
  • 信息

BriefInfo 有不同的字段,但我只对 ID 字段感兴趣。

这就是我想要做的。

I want to go through all the IDs from Brief and cross reference them with all the IDs that exists in Info and only get the ones that exist in Info but dont exist in Brief

谢谢

最佳答案

SELECT i.ID
FROM Info i
LEFT JOIN Brief b USING(ID)
WHERE b.ID IS NULL

或者:

SELECT i.ID
FROM Info i
WHERE NOT EXISTS (
SELECT 1
FROM Brief b
WHERE b.ID = i.ID
)

查看这 2 个链接以进行性能比较:

关于mysql - 为此构建一个 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6418751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com