PostgreSQL 9.6.5で現在日付を取得する方法
環境
PostgreSQL 9.6.5 Windows 10 Home 64bit
方法1
SQL構文
SELECT to_char(now(), 'YYYY/MM/DD') result
now()関数を使って現在日時を取得します。
実行結果
2022/07/23
方法2
SQL構文
select current_date result
「current_date」を使用して現在日付を取得します。
結果
2022/07/23