I have imported a new table into my DB and it has a field that I want to use in a query. However, the entries in the field are Alpha Numeric values. I am looking for a way to parse the entries to where I can put the number portion into its own field in order to query the information better. The problem I have ran into is that since the entries are just one string of characters there is no delimiters, like a comma or space, for me to use to parse the values.
Ex. ABC123 ---> I just need to the 123 for the new field.
But since there are quite a few records in the table I would rather not go entry by entry.
Thanks