Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
947 views
in Technique[技术] by (71.8m points)

mysql - How to get records which contain alphaNumeric characters + white-spaces

How to get records which contain alphaNumeric characters + white-spaces. OR At-list single numeric character in name.

i.e spiderman 1, abc12 part1

What I have done.:

 select * from table t where t.name REGEXP '^[A-Za-z0-9]+$' 

but it will gives only records which dont have white space : i.e abc123

so I also tried

  select * from table t where t.name REGEXP '^[A-Za-z0-9 ]+$' 

Now, it gives me some records which does not contain any numeric characters. i.e abcdefg hij

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
SELECT *
FROM table
WHERE name REGEXP '^[a-zA-Z0-9 ]+$' AND name REGEXP '[0-9]'

Simpler:

SELECT *
FROM table
WHERE name REGEXP '^[a-zA-Z0-9 ]*[0-9][a-zA-Z0-9 ]*$'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...