I want to make a query that returns me if for a cell of a string type column in a table, said cell has letters.
Suppose the table is named data and the column is named values .
Ex:
- A125636
- 15468
- 136599
- B2566B99
That should return me:
- True
- False
- False
- True
I am trying to do this query in Athena (Presto) and it does not work for me, I found that regular expressions can be applied but I do not understand them: https://prestodb.io/docs/current/functions/regexp.html