Using Sql Server 2005
Table1
ID Value
ABC001
BCE002
...
I have search column, when i search the id like this “001” it is showing empty, when I search “ABC001” then it is showing the values.
Query
Select * from table where id = '" & txtid & "'
txtid = textbox
I want to search only the numeric value in the ID.
How to write a query for the numeric search.
Need Query Help
OR