I have a table with two columns: id, datastring
The id column is just a bigint and the datastring column has elements that look like
{"12345":[6789,true]}
{"1234678":[5678, false]}
I would like to select a table where the first column is the id and the second column is the number in the quotes part of the datastring. However, this number is not always the same number of digits.
The result should be
id, numstring
4321, 12345
4322, 134678
Thanks in advance.