> aklaver(at)test=> create table pr_test(x int, y int);> > aklaver(at)test=> select * from pr_test where (x, y) between (1, 3) and> (3,2) order by x,y;> x | y> ---+---> 1 | 3> 1 | 4> 2 | 1> 2 | 2> 2 | 3> 2 | 4> 3 | 1> 3 | 2
+1, nice.