I've a string like 'intercompany creditors {DEMO[[1]]}'. I want to extract only the numbers from the string, in example just '1'.
How to do this in Invantive SQL?
I've a string like 'intercompany creditors {DEMO[[1]]}'. I want to extract only the numbers from the string, in example just '1'.
How to do this in Invantive SQL?
Copyright © 2021 Jogjafile Inc.
You should be able to do so with
substr(get some piece of text from specific positions in the text) andinstr(get the position from a specific piece of text inside some other text):