gpt4 book ai didi

sql-server - SQL 服务器 : select statement where value have format

转载 作者:行者123 更新时间:2023-12-05 00:03:19 24 4
gpt4 key购买 nike

我正在尝试查找具有类似 ##-% 格式的特殊字符串,从两个字符和 '-' 开始

select * 
from temp
where name like '##-%'

给我一​​些建议,或者举例说明我怎样才能得到这个?

以及如何在空字符串 ""上替换此格式

最佳答案

如果你能找到以两个字符和'-'开头的特殊字符

select * from temp where name like '[a-z][a-z]-%'

如果你想找到格式像'##-%

的特殊字符串
select * from temp where name like '##-[%]%'

如果要找第三个字母是'-'

select * from temp where name like '__-%'

关于sql-server - SQL 服务器 : select statement where value have format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24911135/

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