Example: JSONExtract with Filtered Results - Teradata Vantage

Teradata® VantageCloud Lake

Deployment
VantageCloud
Edition
Lake
Product
Teradata Vantage
Published
January 2023
Language
English (United States)
Last Update
2024-04-03
dita:mapPath
phg1621910019905.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
phg1621910019905
The example uses the JSONExtract method to extract filtered results from a table.
The example uses the table(s) created earlier.
/* JSONExtract with filtered results - get the name of everyone older than 23. */ 

SELECT eno, edata.JSONExtract('$.[?(@.age > 23)].firstName') 
FROM my_table 
ORDER BY 1;
Result:
ENO edata.JSONExtract(…)
---------------------------
1  [ "Cameron" ]
2  ?
3  [ "Alex" ]
4  [ "David" ]