add batch
remove batch
split batch
comment selection
show hidden batches
hide batch
highlight batch
db<>fiddle
Db2
Firebird
MariaDB
MySQL
Node.js
Oracle
Postgres
SQL Server
SQLite
TimescaleDB
YugabyteDB
Developer-C 11.1
3.0
4.0
10.2
10.3
10.4
10.5
10.6
10.7
10.8
10.9
5.5
5.6
5.7
8.0
18
11g Release 2
18c
21c
23c
8.4
9.3
9.4
9.5
9.6
10
11
12
13
14
15
16
2012
2014
2016
2017
2017 (Linux)
2019
2019 (Linux)
2022
3.8
3.16
3.27
3.39
2.11
2.14
2.6
2.8
2.18
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
Sakila
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
AdventureWorks
no sample DB
no sample DB
AdventureWorks
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
run
markdown
donate
feedback
about
By using db<>fiddle, you agree to license everything you submit by
Creative Commons CC0
.
CREATE TABLE t1( ID INT, hostname VARCHAR(50), details JSON ); INSERT INTO t1 VALUES ( 101, 'abc123', '[ { "Msg": "Job Running", "currentTask": "IN_PROGRESS", "activityDate": "2020-07-20 16:25:15" }, { "Msg": "Job failed", "currentTask": "IN_PROGRESS", "activityDate": "2020-07-20 16:35:24" } ]' ), ( 102, 'def456', '[ { "Msg": "Job Running", "currentTask": "IN_PROGRESS", "activityDate": "2020-07-21 16:25:15" }, { "Msg": "Job failed", "currentTask": "IN_PROGRESS", "activityDate": "2020-07-21 12:35:24" } ]' )
SELECT id, Msg FROM ( SELECT t1.*, j.Msg, ROW_NUMBER() OVER (PARTITION BY id ORDER BY STR_TO_DATE(j.activityDate, '%Y-%m-%d %H:%i:%S') DESC) AS rn FROM t1 CROSS JOIN JSON_TABLE(details, '$[*]' COLUMNS ( Msg VARCHAR(100) PATH '$.Msg', activityDate VARCHAR(100) PATH '$.activityDate' ) ) j ) q WHERE rn= 1
id
Msg
101
Job failed
102
Job Running