add
remove
split
language
chart
show hidden
hide
db<>fiddle
Db2
DocumentDB
DuckDB
Firebird
MariaDB
MySQL
Oracle
Postgres
SQL Server
SQLite
TimescaleDB
YugabyteDB
11.1
11.5
12.1
0.114 (MongoDB 7.0)
0.116 (MongoDB 7.0)
1.4 LTS
3.0
4.0
5.0
10.2
10.3
10.4
10.5
10.6
10.7
10.8
10.9
10.11
11.4
11.8
12.3
5.5
5.6
5.7
8.0
8.4
9.7
11g Release 2
18c
21c
23ai
23c
26ai
8.4
9.3
9.4
9.5
9.6
10
11
12
13
14
15
16
17
18
19 beta 3
2012
2014
2016
2017
2017 (Linux)
2019
2019 (Linux)
2022
2025
3.8
3.16
3.27
3.39
3.45
3.53
2.11
2.14
2.28
2.6
2.8
2.18
2024.2 LTS
2025.2 LTS
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
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
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
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
no sample DB
no sample DB
no sample DB
no sample DB
no sample DB
run
abort
markdown
clear
donate
feedback
about
By using db<>fiddle, you agree to license everything you submit by
Creative Commons CC0
.
WITH Payment AS ( SELECT 1 AS id, 250 AS cust_id, 1 AS mnth, 2 AS year, 1200 AS amount UNION ALL SELECT 2, 300, 1, 2, 2400 UNION ALL SELECT 3, 450, 12, 3, 1200 UNION ALL SELECT 4, 450, 1, 4, 1200 UNION ALL SELECT 5, 300, 3, 2, 1200 UNION ALL SELECT 6, 455, 1, 3, 1200 ) SELECT p1.id, p1.cust_id, p1.mnth, p1.year, p1.amount FROM ( SELECT id, cust_id, mnth, year, amount, CASE WHEN CONCAT('%,', mnth, ',%') LIKE '%,12,%' THEN 12 WHEN CONCAT('%,', mnth, ',%') LIKE '%,11,%' THEN 11 WHEN CONCAT('%,', mnth, ',%') LIKE '%,10,%' THEN 10 WHEN CONCAT('%,', mnth, ',%') LIKE '%,9,%' THEN 9 WHEN CONCAT('%,', mnth, ',%') LIKE '%,8,%' THEN 8 WHEN CONCAT('%,', mnth, ',%') LIKE '%,7,%' THEN 7 WHEN CONCAT('%,', mnth, ',%') LIKE '%,6,%' THEN 6 WHEN CONCAT('%,', mnth, ',%') LIKE '%,5,%' THEN 5 WHEN CONCAT('%,', mnth, ',%') LIKE '%,4,%' THEN 4 WHEN CONCAT('%,', mnth, ',%') LIKE '%,3,%' THEN 3 WHEN CONCAT('%,', mnth, ',%') LIKE '%,2,%' THEN 2 WHEN CONCAT('%,', mnth, ',%') LIKE '%,1,%' THEN 1 END AS mnth_num FROM Payment ) p1 INNER JOIN ( SELECT MAX(CASE WHEN CONCAT('%,', mnth, ',%') LIKE '%,12,%' THEN 12 WHEN CONCAT('%,', mnth, ',%') LIKE '%,11,%' THEN 11 WHEN CONCAT('%,', mnth, ',%') LIKE '%,10,%' THEN 10 WHEN CONCAT('%,', mnth, ',%') LIKE '%,9,%' THEN 9 WHEN CONCAT('%,', mnth, ',%') LIKE '%,8,%' THEN 8 WHEN CONCAT('%,', mnth, ',%') LIKE '%,7,%' THEN 7 WHEN CONCAT('%,', mnth, ',%') LIKE '%,6,%' THEN 6 WHEN CONCAT('%,', mnth, ',%') LIKE '%,5,%' THEN 5 WHEN CONCAT('%,', mnth, ',%') LIKE '%,4,%' THEN 4 WHEN CONCAT('%,', mnth, ',%') LIKE '%,3,%' THEN 3 WHEN CONCAT('%,', mnth, ',%') LIKE '%,2,%' THEN 2 WHEN CONCAT('%,', mnth, ',%') LIKE '%,1,%' THEN 1 END) AS max_mnth, MAX(year) AS max_year FROM Payment WHERE year = (SELECT MAX(year) FROM Payment) ) p2 ON p1.year = p2.max_year AND p1.mnth_num = p2.max_mnth;
id
cust_id
mnth
year
amount
4
450
1
4
1200