sql >> Base de Datos >  >> RDS >> PostgreSQL

Obtener la primera fecha del mes en postgres

Puede usar la expresión date_trunc('month', current_date) . Demostrado con una instrucción SELECT. . .

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

Para eliminar el tiempo, envíe hasta la fecha.

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

Si está seguro de que esa columna debe siempre almacene solo el primero de un mes, también debe usar una restricción 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).