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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -