PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Obtenir la première date du mois dans postgres

Vous pouvez utiliser l'expression date_trunc('month', current_date) . Démonstration avec une instruction SELECT . . .

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

Pour supprimer l'heure, diffusez à ce jour.

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

Si vous êtes certain que cette colonne doit toujours stocker uniquement le premier d'un mois, vous devez également utiliser une contrainte 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).