That should work if you data type is int or character. - see this example below. If the data type is float, it may not work. Also, if the column has some invisible trailing characters, it would not work. What is the data type of the [Item #] column? Can you post some sample data?CREATE TABLE #tmp(id INT, x VARCHAR(32));INSERT INTO #tmp VALUES (40,' 40 '),(40,'40'),(2340,'2340')SELECT * FROM #tmp WHERE id LIKE '%40'SELECT * FROM #tmp WHERE x LIKE '%40'DROP TABLE #tmp