My database has a column that contains a JSON array like this:
WITH dataset AS (
SELECT *
FROM (VALUES
('1', JSON'[{ "name" : "foo" }, { "name" : "bar" }]'),
('2', JSON'[{ "name" : "fizz" }, { "name" : "buzz" }]'),
('3', JSON'[{ "name" : "hello" }, { "name" : "world" }]')
) AS t(id, my_array)
)
I want to select the name
property from the last element in the array:
result |
---|
bar |
buzz |
world |
I can select the first element easily enough:
SELECT json_extract_scalar(my_array, '$[0].name') FROM dataset
These attempts did not work for the last element:
SELECT json_extract_scalar(my_array, '$[-1].name') FROM dataset
SELECT json_extract_scalar(my_array, '$[cardinality(json_parse(my_array)) - 1].name') FROM dataset
SELECT element_at(my_array, -1) FROM dataset
Note: I cannot make any assumptions about the length of the JSON array.
In addition to your answer.
json_extract
/json_extract_scalar
work with quite limited subset of JSON path queries so one way to achieve your goal is to cast toarray
. Few notes:json_extract
you can castJSON
type directly, if column is of string type usejson_parse
before cast.JSON
as target type, i.e.array(json)
orarray(map(varchar, json))
, which can be useful in case of mixed content inside array/JSON object properties:Trino, which should be the base for Athena since 3rd version has several advanced functions to use with JSON path like
json_query
orjson_value
, which can be used in this case: