Using SQL Server 2005
I want to filter the column where column value not equal to numeric
Table1
Status
010203
Absent
231415
Ramesh
Suresh
...,
I want to get only Names from the status column like
Tried Query
Select Status from table1 where status <> 'absent' and status <> numecivalue
How to mentioned status <> numericvalue
Expected Output
Table
Status
Ramesh
Suresh
...,
Need Query Help.