I need to take dates between two date intervals.
I Have Tried two queries as below
SELECT * FROM [dbo].[BudgetOffice] BUD
where Week BETWEEN '2015-08-03' AND '2015-08-03'.
SELECT * FROM [dbo].[BudgetOffice] BUD
where Week >= '2015-08-03' AND Week <= '2015-08-03'.
Both Returns same results. I thought that
between
will return only the values lies in between the input values and exclude the input values. Is that correct?. If both are same which one more feasible with performance.?