gpt4 book ai didi

mysql - 离开加入具体条件请帮助

转载 作者:行者123 更新时间:2023-11-29 05:39:04 25 4
gpt4 key购买 nike

构建查询时遇到问题这是简化的表格结构3张 table

Event [Event_id , Event_name]

Event_files [Event_id(FK) , File_id(FK)]

Uploaded_Files[File_id , File_type, File_path]

我们主要有2种文件类型

  • 图片=2

  • 文档 = 4

我想做的是获取事件及其图像(如果它们有图像)我正在尝试使用此查询执行此操作

select e.id, e.name,uf.id as file_id,uf.path  
from event e
left join event_file ef on ef.event_id = e.id
left join uploaded_file uf ON ef.file_id = uf.id

我知道我需要应用一个条件,但每次我在 where 或 ON 中执行时,查询总是有问题例如,如果我申请:

left join uploaded_file uf ON ef.file_id = uf.id AND (uf.type = 2 )

对于同时具有图像和文件的事件,它仍会返回 2 条记录,其中一个的 file_path 为 null 。

另一方面,如果我执行以下操作:

where (uf.id is null OR (uf.id is not null AND uf.type=2))

只有文件没有图片的事件不再返回

请问有解决办法吗?

提前致谢

最佳答案

SELECT e.id, e.name, f.file_id AS file_id, f.path
FROM event e
LEFT JOIN
(
SELECT ef.event_id, uf.id AS file_id, uf.path
FROM event_file ef
INNER JOIN uploaded_file uf ON ef.file_id = uf.id AND uf.type = 2
) f ON f.event_id = e.id

这应该可以(未经测试。)您得到空记录的原因是因为您只在 uploaded_file 表上指定了 uf.type 条件,这对 event_file 的左连接没有任何影响。

关于mysql - 离开加入具体条件请帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8211560/

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