gpt4 book ai didi

sql - 获取所有包含数字的记录

转载 作者:行者123 更新时间:2023-12-01 06:59:56 26 4
gpt4 key购买 nike

是否可以编写一个查询来从某个字段包含数值的表中获取所有记录?

类似于“从 tbladdress 中选择街道,其中街道像 '%0%' 或街道像 '%1%' 等等”

只有一个功能?

最佳答案

尝试这个

declare @t table(street varchar(50))
insert into @t
select 'this address is 45/5, Some Road' union all
select 'this address is only text'

select street from @t
where street like '%[0-9]%'

街道
this address is 45/5, Some Road

关于sql - 获取所有包含数字的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1807988/

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