0

After applying function GET_JSON_OBJECT(features, '$.field') I get the values:

{10:3,300:286}
{300:86}
{300:3,50:1}

How to get the value after 300 then?

Needed result is

286
86
3
jarlh
  • 42,561
  • 8
  • 45
  • 63
bluekit46
  • 143
  • 5

1 Answers1

0

You can try this :

GET_JSON_OBJECT(features, '$.field.300') 

Or

 GET_JSON_OBJECT(features, '$.field."300"') 
SelVazi
  • 10,028
  • 2
  • 13
  • 29