My sql script is like this :
SELECT hotel_code, star FROM hotel WHERE star REGEXP '^[A-Za-z0-9]+$'
The result is like this :
I want the result of select the field that contains numbers and letters.
So, the result is like this :
3EST
2EST
Any solution to solve my problem
Thank you