postgresql – 在postgres中获取月份的第一个日期

前端之家收集整理的这篇文章主要介绍了postgresql – 在postgres中获取月份的第一个日期前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图获得一个对应于当月的第一天的“日期”类型。基本上我的一个表存储一个日期,但我希望它总是这个月的第一个,所以我试图创建一个触发器,现在将获得(),然后用1替换一天。
您可以使用表达式date_trunc(‘month’,current_date)。用SELECT语句演示。 。 。
select date_trunc('month',current_date)
2013-08-01 00:00:00-04

删除时间,转换到目前为止。

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

如果您确定该列应该始终只存储一个月的第一个,您还应该使用一个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).
原文链接:https://www.f2er.com/postgresql/193186.html

猜你在找的Postgre SQL相关文章