Is there a performance difference between these, and if so, why?
SELECT Col1, Col2, Col3
FROM dbo.MYTable
WHERE Col17 = CONVERT (VARCHAR (10), @Parameter1)
and
SELECT Col1, Col2, Col3
FROM dbo.MYTable
WHERE CONVERT (VARCHAR (10), @Parameter1) = Col17