php mysql查询首字母!= [a-z]

前端之家收集整理的这篇文章主要介绍了php mysql查询首字母!= [a-z]前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
SELECT * FROM dbname WHERE text = 'a%' 
(this can get all the `text` fields which begin with the letter "a".)

但是如何获得第一个字母的字段!= [a-z]?

例如:

\"hello\"  // this first letter begin as \ not range in a-z
いけ  // also first letter not begin range in a-z
... 
may also have a white space as the first character.

那么如何使用PHP mySQL查询获取所有这些结果的第一个字母!= [a-z]?

试试这个:
SELECT * FROM dbname WHERE text REGEXP '^[^a-zA-Z]';

也就是说,如果您希望它不区分大小写(大写或小写).如果你想允许大写字母A-Z,那么只需使用:

SELECT * FROM dbname WHERE text REGEXP '^[^a-z]';

基本上,正则表达式表示匹配字符串开头没有字母a-z的任何字符串.

原文链接:https://www.f2er.com/php/130617.html

猜你在找的PHP相关文章