PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Ottieni la prima data del mese in postgres

Puoi usare l'espressione date_trunc('month', current_date) . Dimostrato con un'istruzione SELECT. . .

select date_trunc('month', current_date)
2013-08-01 00:00:00-04

Per rimuovere il tempo, trasmetti fino ad oggi.

select cast(date_trunc('month', current_date) as date)
2013-08-01

Se sei certo che la colonna dovrebbe sempre memorizzare solo il primo di un mese, dovresti anche utilizzare un vincolo CHECK.

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).