I need to filter a table on redshift for any string that contains any letters.
I was using the following sql query:
SELECT * FROM Table WHERE Column LIKE '%[0-9]%'
But it gives me an empty table, although the Column contains fields like: ID15756
Can anyone help please?