- Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathtime.sql
22 lines (18 loc) · 553 Bytes
/
time.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
set enable_seqscan=off;
CREATETABLEtest_time (
i time
);
INSERT INTO test_time VALUES
( '03:55:08' ),
( '04:55:08' ),
( '05:55:08' ),
( '08:55:08' ),
( '09:55:08' ),
( '10:55:08' )
;
CREATEINDEXidx_timeON test_time USING rum (i);
SELECT*FROM test_time WHERE i<'08:55:08'::timeORDER BY i;
SELECT*FROM test_time WHERE i<='08:55:08'::timeORDER BY i;
SELECT*FROM test_time WHERE i='08:55:08'::timeORDER BY i;
SELECT*FROM test_time WHERE i>='08:55:08'::timeORDER BY i;
SELECT*FROM test_time WHERE i>'08:55:08'::timeORDER BY i;