Using SQL Server 2005
I want to get only numeric values from the table
Column1
12345 asdf 2312 ase acd ...,
Tried Query
Try using the WHERE clause:
WHERE
SELECT column1 FROM table WHERE Isnumeric(column1);