I have a table that is still SQL 2005. This table has a field defined as an int
I want to perform a search on that field using the Like function.
This does not not work. Any ideas? Thanks.
Code:
RECD_NUMBER int
Code:
SELECT * FROM [myDatabase].[dbo].[myTable] WHERE recd_number LIKE %2548%
Comment