I have a table, in this table there is a column called parent_data, where there is a line with several characters and in the middle of them a number.
Exemple:
|PARENT_DATA|
{"orderERPNumber":1093710,"orderERPPosition":"P"}
I wanna know if there's a way I can do a query where I extract only the numbers.
The basic query:
SELECT PARENT_DATA FROM IONV_SYNC.IONVS_CRITICAS;
RETURNS:
{"orderERPNumber":1093710,"orderERPPosition":"P"}
So i want it to return only the number 1093710
.