Пытаюсь достать записи за опред. месяц. Самое красивое что получилось это вот так:
SELECT * from charges_charge where (extract year from date)=2009 and extract(month from date)=11;
Второй вариант:
SELECT * from charges_charge where text(date) like '2009-11%';
SELECT * from charges_charge where "date" between date('2009-11-01') and date('2009-11-01') + interval '1 month';