通配符 仅限 SQL 字母字符

发布于 2024-10-16 12:30:07 字数 144 浏览 0 评论 0原文

我需要仅为字母字符创建一个规则,

我使用了以下通配符字符序列,但不起作用!

喜欢“[A-Za-z]”

喜欢“az”

喜欢“A-Za-z”

I need to create a rule only for alphabet characters

i used the following Wildcard character sequences but didn't work !

LIKE '[A-Za-z]'

LIKE 'a-z'

LIKE 'A-Za-z'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

负佳期 2024-10-23 12:30:08

双负就像

WHERE
  SomeCol NOT LIKE '%[^a-z]%'

忽略第一个 NOT,这意味着“匹配 a 到 z 范围内的任何字符”。

然后,您使用第一个 NOT 进行反转,这意味着“不匹配 a 到 z 范围内的任何字符 not

在注释

LIKE '%[az]%' 表示“查找 az 之间的任何单个字符。因此 111s222 会被匹配,因为 s 会与此类似。

Double negative like

WHERE
  SomeCol NOT LIKE '%[^a-z]%'

Ignoring the first NOT, this means "match any character not in the range a to z".

Then, you reverse using the first NOT which means "don't match any character not in the range a to z"

Edit, after comment

LIKE '%[a-z]%' means "find any single character between a-z. So 111s222 is matched for example because s matches in this like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文