What would be the SQL to remove all numbers found in an otherwise string column using Sqlite (an Oracle example would be appreciated too)?
Example : I would like to remove all numbers from entries like this :
291 HELP,1456 CALL
Expected output:
HELP,CALL
edit: I have edited the question because it is not only from one entry that I want to remove numbers but many of them.