I need to set a condition in the where clause to return the values that contains letters. Here is an example of my data: one is pure numeric 123456789 and one is mixed AB1234567
I only want to return the mixed letter/numeric values.
Thanks
Edit: Both methods in the answers below work fine! You guys are awesome!
I found an easier way by using where col>'A'
Tested the result against the answered scripts and they returned the same.