gpt4 book ai didi

MySQL:在时间戳上使用 max 函数的意外结果

转载 作者:行者123 更新时间:2023-11-29 06:06:03 26 4
gpt4 key购买 nike

我使用 Mantis Bug 数据库(使用 MySQL),我想查询在过去 2 周内哪些错误的严重性发生了变化,但是只应指出该错误的最后一次严重性变化。

问题是,我为每个 bugID(这是主键)获得多个条目,这不是我想要的结果,因为我只想对每个 bug 进行最新更改。这意味着我以某种方式错误地使用了 max 函数和 group by 子句。

在这里你可以看到我的查询:

SELECT `bug_id`,
max(date_format(from_unixtime(`mantis_bug_history_table`.`date_modified`),'%Y-%m-%d %h:%i:%s')) AS `Severity_changed`,
`mantis_bug_history_table`.`old_value`,
`mantis_bug_history_table`.`new_value`
from `prepared_bug_list`
join `mantis_bug_history_table` on `prepared_bug_list`.`bug_id` = `mantis_bug_history_table`.`bug_id`
where (`mantis_bug_history_table`.`field_name` like 'severity')
group by `bug_id`,`old_value`,`.`new_value`
having (`Severity_modified` >= (now() - interval 2 week))
order by bug_id` ASC

例如,对于 ID 为 8 的错误,我通过此查询获得了三个条目。 ID 为 8 的错误在过去 2 周内确实发生了三个严重性变化,但我只想获得最新的严重性变化。

我的查询可能有什么问题?

最佳答案

max() 是一个聚合函数,它似乎不适合您要执行的操作。

我觉得您正在尝试做的是从 mantis_bug_history_table 中的所有适用的 bug_id 中获取最新信息。如果这是真的,那么我将按以下方式重写查询——我将编写一个子查询 getLatest 并将其与 prepared_bug_list

连接

更新的答案

注意:我无权访问实际的数据库表,因此此查询可能存在错误

select
`getLatest`.`last_bug_id`
, `mantis_bug_history_table`.`date_modified`
, `mantis_bug_history_table`.`old_value`
, `mantis_bug_history_table`.`new_value`
from
(
select
(
select
`bug_id`
from
`mantis_bug_history_table`
where
`date_modified` > unix_timestamp() - 14*24*3600 -- two weeks
and `field_name` like 'severity'
and `bug_id` = `prepared_bug_list`.`bug_id`
order by
`date_modified` desc
limit 1
) as `last_bug_id`
from
`prepared_bug_list`
) as `getLatest`
inner join `mantis_bug_history_table`
on `prepared_bug_list`.`bug_id` = `getLatest`.`last_bug_id`
order by `getLatest`.`bug_id` ASC

关于MySQL:在时间戳上使用 max 函数的意外结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41612980/

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