Is there a difference in performance between these two queries?
--= operator
SELECT COL1, COL2
FROM DBO.MYTABLE
WHERE COL1 = '1'
--like operator
SELECT COL1, COL2
FROM DBO.MYTABLE
WHERE COL1 LIKE '1'
Basically using LIKE in this case is wrong but database engine accepts this.
Checkout the following post.
Quote (in case it goes off-line):