gpt4 book ai didi

php - 在其他表中查找不匹配的 mysql 条目

转载 作者:太空宇宙 更新时间:2023-11-03 11:06:31 25 4
gpt4 key购买 nike

我在 mysql 中有两个具有以下结构的表:

Events: id
Events_artists: event_id, more columns

我想在表 events_artists 中找到与 events 中的 id 不匹配的 event_ids。

到目前为止我唯一想出的是:

SELECT * FROM events,events_artists WHERE events_artists.event_id!=events.id

但是,这是废话,基本上会返回整个表。

有人知道怎么解决吗?

谢谢!

查尔斯

找到解决方案,感谢 Andrzej Bobak

select * from events_artists where event_id not in (select id from events)

最佳答案

这种方法怎么样?

select * from events_artists where event_id is null or event_id not in (select id from events)

关于php - 在其他表中查找不匹配的 mysql 条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11578740/

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