gpt4 book ai didi

postgresql - 如何在 PostgreSQL 中列出从年初到上个月结束的所有记录?

转载 作者:行者123 更新时间:2023-11-29 13:26:55 37 4
gpt4 key购买 nike

所以我想获取从当年年初到上个月月底的记录,所以不是简单的-30。我已完成以下操作,但问题是它仅包含上个月第一天 (01-07-2015) 的记录。

SELECT start_date,customer_code, "value", quantity
FROM dw_mysql."Vouchers"
WHERE start_date BETWEEN date_trunc('year', now()) AND
date_trunc('month', NOW()) - INTERVAL '1 months';

最佳答案

试试这个:

SELECT start_date,customer_code, "value", quantity
FROM dw_mysql."Vouchers"
WHERE start_date BETWEEN date_trunc('year', now()) AND
(date_trunc('MONTH', NOW()) - INTERVAL '1 day')::date

第二个 date_trunc 项采用月份精度的当前时间,即 当前 月份的开始,然后从中减去一天以获得 上个月的最后一天。

关于postgresql - 如何在 PostgreSQL 中列出从年初到上个月结束的所有记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32131172/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com