Using SQL Server 2005
I want to get only numeric values from the table
Column1
12345
asdf
2312
ase
acd
...,
Tried Query
Select Isnumeric(column1) from table
Showing Result as
1
0
1
0
0
..,
I need the colum1 numeric value
Need SQL Server Query help
See Question&Answers more detail:os