add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
CREATE TABLE
INSERT 0 2
id reference customfields
1 John [{"ID": 17, "NumericValue": 1234}, {"ID": 21, "DateValue": "2023-06-14T00:00:00Z"}, {"ID": 24, "BooleanValue": false}]
2 Smith [{"ID": 17, "NumericValue": 1234}, {"ID": 12, "DateValue": "2023-04-05T00:00:00Z"}, {"ID": 15, "ListItemValue": "india"}]
SELECT 2
id reference customfields
1 John [{"ID": 17, "NumericValue": 1234}, {"ID": 21, "DateValue": "2023-06-14T00:00:00Z"}, {"ID": 24, "BooleanValue": false}]
SELECT 1