Hello,I want to SELECT some records in declared time range.My table looks like that:ID DATE55 2010-06-12 21:49:0056 2010-06-12 21:49:0057 2010-06-12 21:49:0058 2010-06-12 21:49:0059 2010-06-12 21:49:0060 2010-06-12 21:49:0061 2010-06-12 21:49:0062 2010-06-12 21:49:0063 2010-06-12 22:01:0064 2010-06-12 22:01:0065 2010-06-12 22:01:0066 2010-06-12 22:01:0067 2010-06-12 22:04:4768 2010-06-12 22:04:4869 2010-06-12 22:04:4970 2010-06-12 22:07:2771 2010-06-12 22:07:2772 2010-06-12 22:07:27
Query: SELECT [id] FROM [dbo].[table] WHERE [date] >= '2010-06-12 21:49:00' AND [date] <= '2010-06-12 22:07:27'
Only this ID are returned:555657585960616263646566676869
Why 70, 71, 72 IDs are not returned? There is[date] <= '2010-06-12 22:07:27'
This works:WHERE [date] >= '2010-06-12 21:49:00' AND [date] < '2010-06-12 22:07:28'
But why <= not?Could you help me please?