So I have a column with the following values that some times has a number in the beginning
turtle boat
10 banana split
lord Thanos
23 macbook
How to query to remove numbers and the space in front of the numbers, but not the space in the middle of the string?
Intended output:
turtle boat
banana split
lord Thanos
macbook
Query I tried from another question in here:
select regexp_replace(mycolumn, '[^[:alpha:]]', '', 'g')
Problem with this query is that it completely removes all spaces