mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			575 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			575 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
set enable_seqscan=off;
 | 
						|
 | 
						|
CREATE TABLE test_date (
 | 
						|
	i date
 | 
						|
);
 | 
						|
 | 
						|
INSERT INTO test_date VALUES
 | 
						|
	( '2004-10-23' ),
 | 
						|
	( '2004-10-24' ),
 | 
						|
	( '2004-10-25' ),
 | 
						|
	( '2004-10-26' ),
 | 
						|
	( '2004-10-27' ),
 | 
						|
	( '2004-10-28' )
 | 
						|
;
 | 
						|
 | 
						|
CREATE INDEX idx_date ON test_date USING gin (i);
 | 
						|
 | 
						|
SELECT * FROM test_date WHERE i<'2004-10-26'::date ORDER BY i;
 | 
						|
SELECT * FROM test_date WHERE i<='2004-10-26'::date ORDER BY i;
 | 
						|
SELECT * FROM test_date WHERE i='2004-10-26'::date ORDER BY i;
 | 
						|
SELECT * FROM test_date WHERE i>='2004-10-26'::date ORDER BY i;
 | 
						|
SELECT * FROM test_date WHERE i>'2004-10-26'::date ORDER BY i;
 |