Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はPostgresで次のものを取得しようとしています:
select day_in_month(2);
期待される出力:
28
Postgresにそれを行うための組み込みの方法はありますか?
SELECT DATE_PART('days', DATE_TRUNC('month', NOW()) + '1 MONTH'::INTERVAL - '1 DAY'::INTERVAL )
NOW()他の日付に置き換えます。
NOW()