xxxxxxxxxx
select Date, TotalAllowance from Calculation where EmployeeId = 1
and Date between '2011/02/25' and '2011/02/27'
xxxxxxxxxx
SELECT * FROM [table]
WHERE [time] BETWEEN '2014-04-08 23:53:00' AND '2014-04-08 23:58:00'
xxxxxxxxxx
SELECT * FROM [table]
WHERE [time] >='2014-04-08 23:53:00.000' AND [time] <= '2014-04-08 23:58:00.000'