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
.
CREATE TABLE blobstable ( id integer primary key, blob jsonb ); INSERT INTO blobstable VALUES (1, '{ "identifiers": [ {"isin": "XS1", "primary": true}, {"valor": 1234}, {"isin": "EXTRA"} ], "workflows": {}, "slots": {} }'), (2, '{ "identifiers": [ {"isin": "XS3", "primary": true}, {"isin": "EXTRA"}, {"valor": 456, "linked": true}, {"cusip": "TRGYN"} ], "workflows": {}, "slots": {} }'), (3, '{ "identifiers": [ {"isin": "XS12", "primary": true}, {"valor": 678}, {"isin": "XS5"} ], "workflows": {}, "slots": {} }') ;
CREATE TABLE
INSERT 0 3
WITH scheme_and_id as ( select (id_json -> 'identifier') AS queried_id, trim((id_json-> 'scheme')::text, '"')AS scheme, ordinal from jsonb_array_elements('[ {"identifier": "XS12", "scheme" : "isin"}, {"identifier": 1234, "scheme" : "valor"}, {"identifier": "EXTRA", "scheme" : "isin"} ]'::jsonb) WITH ORDINALITY as f(id_json, ordinal)), -- first build the JSON to be used to match the index resolve_id as (select -- select the JSON objects id, (blob -> 'identifiers') as "ids", ordinal, queried_id, scheme from blobstable, scheme_and_id where (blob -> 'identifiers') @> jsonb_build_array( jsonb_build_object(scheme, queried_id))), candidates as ( SELECT id, ordinal, scheme, queried_id, (identifier_row -> scheme) as candidate_id, (identifier_row -> 'primary')::boolean as "primary", (identifier_row -> 'linked')::boolean as "linked" FROM resolve_id , LATERAL jsonb_array_elements("ids") identifier_row ) SELECT id from candidates c right join scheme_and_id on c.ordinal = scheme_and_id.ordinal and ((c."primary" and c.queried_id = c.candidate_id) -- first rule or (c."linked" and c.queried_id = c.candidate_id and not exists(select "id" from candidates where c.ordinal = candidates.ordinal and candidate_id is not null and "primary")) -- second rule or (("primary" is Null or False) and ("linked" is Null or False) and c.queried_id = c.candidate_id and not exists(select "id" from candidates where c.ordinal = candidates.ordinal and candidate_id is not null and "linked"))) -- third rule order by scheme_and_id.ordinal;
id
3
1
1
2
SELECT 4