gpt4 book ai didi

mysql其中字符串以数字结尾

转载 作者:可可西里 更新时间:2023-11-01 06:28:15 25 4
gpt4 key购买 nike

我的表列包含如下值:

id | item
-------------
1 | aaaa11a112
2 | aa1112aa2a
3 | aa11aa1a11
4 | aaa2a222aa

我只想选择项目值以数字结尾的行。有这样的吗?

select * from table where item like '%number'

最佳答案

您可以使用REGEXP 和字符类

select * from table where item REGEXP '[[:digit:]]$'

DEMO

解释:

[[:digit:]] >> Match digit characters
$ >> Match at the end of the string

在括号表达式(使用 [ 和 ] 编写)中,[:character_class:] 表示匹配属于该类的所有字符的字符类。


旁注:

REGEXP 一起使用的其他有用的 mysql 字符类,取自 documentation :

Character Class Name    Meaning
alnum Alphanumeric characters
alpha Alphabetic characters
blank Whitespace characters
cntrl Control characters
digit Digit characters
graph Graphic characters
lower Lowercase alphabetic characters
print Graphic or space characters
punct Punctuation characters
space Space, tab, newline, and carriage return
upper Uppercase alphabetic characters
xdigit Hexadecimal digit characters

关于mysql其中字符串以数字结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32304308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com