Returns the line stored in an associative storage given by the first parameter at the hierarchy given by the second parameter at the row given by the third parameter.
SELECT storedLine("Storage", [123, 456], [3]) AS line FROM stream
=> [0,1,0,1,0]
Returns the value stored in an associative storage given by the first parameter at the hierarchy given by the second parameter at the row given by the third parameter.
SELECT storedValue("Storage", [123, 456], [3,2]) AS value FROM stream
=> 0