通配符 仅限 SQL 字母字符
我需要仅为字母字符创建一个规则,
我使用了以下通配符字符序列,但不起作用!
喜欢“[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
双负就像
忽略第一个 NOT,这意味着“匹配 a 到 z 范围内的任何字符不”。
然后,您使用第一个 NOT 进行反转,这意味着“不匹配 a 到 z 范围内的任何字符 not”
在注释
LIKE '%[az]%'
表示“查找 az 之间的任何单个字符。因此111s222
会被匹配,因为s
会与此类似。Double negative like
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. So111s222
is matched for example becauses
matches in this like.