gpt4 book ai didi

mysql - 为什么我的查询在 mySql 中给出错误的 fileid?

转载 作者:行者123 更新时间:2023-11-29 23:24:34 25 4
gpt4 key购买 nike

当我尝试执行此查询时,即使我获得了正确的其他信息,它也会给我错误的文件ID。我无法弄清楚我的查询有什么问题?以下是我的查询:

select fileid,filename,folderpath,max(version),filetype from fileinfo
group by concat(folderpath,filename);

此查询给出以下结果:

enter image description here

但是当我检查该特定文件的版本时,下面是我的图像:

enter image description here

所以安装了 fileid 210 它应该给我 1642。

最佳答案

使用聚合函数然后使用group by并不能保证当列数很少时从聚合列中完成选择。另外,在您的情况下,已经指出您正在选择某些内容并与其他内容进行分组。

另一种方法是使用左连接,如下所示,如果您想确保分组也考虑文件类型等,则可以在连接子句上添加附加条件。

select 
f1.*
from fileinfo f1
left join fileinfo f2 on concat(f1.folderpath,f1.filename) = concat(f2.folderpath,f2.filename)
and f1.version < f2.version
where f2.fileid is null;

<强> demo

关于mysql - 为什么我的查询在 mySql 中给出错误的 fileid?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27060475/

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