标签: sql postgresql
如何在Postgresql中获取月份中的最后一天?
答案 0 :(得分:0)
SELECT (date_trunc('MONTH', now()) + INTERVAL '1 MONTH - 1 day')::date;