As known, in Postgres json, we can get one element at a specified index from an array using this:
["a","b","c"]::json -> 2
The script above return the 3rd element "c".
Then is there any way a range of elements can be returned if I specify a index range such as 0 to 20?