In SQL Server 2008,
select * from OneTable
compare to
select * from OneTable where OneTable.SomeDate between 'MINDATE' and 'MAXDATE'
which one is fast or they are same fast?
The following recommendations will help you in your SQL tuning process.
You'll find 3 sections below:
SELECT
*
FROM
OneTable