If I have a query with a condition
where year(MyColumn) = 2009
Since there is no index on MyColumn, will it matter if transform it to be 'sargeable'?
where MyColumn >= '20090101' and MyColumn < '20100101'
(Besides the overhead of the YEAR function call)