Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要检索单词列表,但不希望任何单词中包含一个或多个数字。
这个想法很简单,但我什至不知道如何尝试。我有一列单词,其中一些单词中有数字。我只想检索那些没有数字的。
我将如何在我的 SQL 查询中执行此操作?
谢谢
使用正则表达式,可以使用 php 的 preg_match,也可以使用 mysql 中的 REGEXP。
SELECT list_col FROM list_table WHERE list_col NOT REGEXP '[0-9]'