pri*_*kar 13
试试这个
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]%'
Run Code Online (Sandbox Code Playgroud)
街
this address is 45/5, Some Road
Run Code Online (Sandbox Code Playgroud)