选择SQL非数字值

时间:2016-01-07 10:29:17

标签: sql-server

我只需要选择sql表中不包含任何数值的行,这里是一个示例表:

AddressLine1
-------------
59 Prospect Road
Rose House
24 St. Pauls Place
1 Oxford Avenue
9 Stonecross Road
65 Wood Common
19 Falcon Close
Thorn House
16 Poplars Close
52 Coombes Road
12 Brinsmead
14 Meadow Close
15 Rowlatt Drive

在这个例子中,我只想找回“Rose House”和“Thorn House”行。

我将非常感谢您对我应该使用的代码的任何建议。

1 个答案:

答案 0 :(得分:3)

select * from tab
where AddressLine1 not like '%[0-9]%'

试试这个