sql - Mysql query to select a column with only alphabetical characters -
i need display records mysql database particular column has alphabets.
eg,
table name: data
column abcde 12345 xyz 123 so output should abcde , xyz only. far tried using pattern match no luck
here use yet select * listing zip '[^a-za-z]'
try code
select * listing zip regexp '^[a-z]+$'
Comments
Post a Comment