Du kan bruge udtrykket date_trunc('month', current_date)
. Demonstreret med en SELECT-sætning. . .
select date_trunc('month', current_date)
2013-08-01 00:00:00-04
For at fjerne tid skal du caste til dato.
select cast(date_trunc('month', current_date) as date)
2013-08-01
Hvis du er sikker på, at kolonnen skal altid gem kun den første af en måned, bør du også bruge en CHECK-begrænsning.
create table foo (
first_of_month date not null
check (extract (day from first_of_month) = 1)
);
insert into foo (first_of_month) values ('2015-01-01'); --Succeeds
insert into foo (first_of_month) values ('2015-01-02'); --Fails
ERROR: new row for relation "foo" violates check constraint "foo_first_of_month_check" DETAIL: Failing row contains (2015-01-02).