使用SQL Server 2005
我想从表中只获取数值
列1
12345
asdf
2312
ase
acd
...,
Run Code Online (Sandbox Code Playgroud)
尝试查询
Select Isnumeric(column1) from table
Run Code Online (Sandbox Code Playgroud)
显示结果为
1
0
1
0
0
..,
Run Code Online (Sandbox Code Playgroud)
我需要colum1数值
需要SQL Server查询帮助