REGEXP
を使用できます とキャラクタークラス
select * from table where item REGEXP '[[:digit:]]$'
説明:
[[:digit:]] >> Match digit characters
$ >> Match at the end of the string
角かっこ式([および]を使用して記述)内で、[:character_class:]は、そのクラスに属するすべての文字に一致する文字クラスを表します。
サイドノート:
REGEXP
で使用するその他の便利なmysql文字クラス 、ドキュメント
から取得 :
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