Is there a performance difference between using a BETWEEN clause or using <= AND >= comparisons?
i.e. these two queries:
SELECT * FROM table
It should be the same.
Good database engine will generate same plan for that expression.