Would like to check with all expect in SQL query. Please look at below for the examples. Thanks.
Column
abc 123
cdf 456
What I want is:
123
456
Appreciate your help for this question. Thanks a lot!
Would like to check with all expect in SQL query. Please look at below for the examples. Thanks.
Column
abc 123
cdf 456
What I want is:
123
456
Appreciate your help for this question. Thanks a lot!
Based on your comments, Try this -
SELECT REGEXP_SUBSTR(Column, '[0-9]+');