I'm trying to remove various characters from a value to only get/display the numeric characters. I can get results such as
value1: 162246xx
value2: =W035268
value3: +034567
value4: =<E04569
but only am interested and getting: value1: 162246 value2: 035268 value3: 034567 value4: 04569
What type of query can I run to retrieve all the values from column X excluding non numerical characters within the value? Thank you.