关于 sql:如何从 MySQL 列中的 JSON 文档中获取最新值?

How to get the latest value from the JSON document inside MySQL column?

Mysql版本是8.0.18-commercial
我编写了以下查询,它显示 details

的结果

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
select details from table t1;

Output:
[
  {
   "Msg":"Job Running",
   "Task":"IN_PROGRESS",
   "Date":"2020-07-20 16:25:15",
  },
  {
   "Msg":"Job failed",
   "Task":"IN_PROGRESS",
   "Date":"2020-07-20 16:35:24",
  }
]

我只希望 Msg 值来自具有最新 Date

的最后一个元素

我想要的输出是用 latest date 显示元素的 Msg

1
2
ColumnName      ColumnValue
Msg             Job failed

我写了以下查询,但它给出了 null 输出

1
select details->>"$.Msg" from table t1;


如果您正在运行 MySQ。 8.0,您可以使用 json_table() 将 json 数组取消嵌套到行,然后使用 row_number() 保留每个原始行的最新记录。

假设你的表的主键是 id,你可以这样表述:

1
2
3
4
5
6
7
8
9
10
11
12
13
select msg, activity_date
from (
    select x.*, row_number() over(partition by t.id order by x.activity_date desc) rn
    from mytable t
    cross join json_table(
        t.details,
        '$[*]' columns(
            msg varchar(50) path '$.Msg',
            activity_date datetime path '$.activityDate'
        )
    ) x
) t
where rn = 1

关于 DB Fiddle 的演示:

1
2
3
msg        | activity_date      
:--------- | :------------------
Job failed | 2020-07-20 16:35:24