PostgreSQL 获取时间年月日
时间: 2023-06-28 08:04:14 浏览: 206
获取年月日
要获取当前时间的年月日,可以使用 PostgreSQL 内置的函数:
```sql
SELECT current_date;
```
这将返回一个 `date` 类型的值,表示当前日期。
如果只想获取年、月、日的值,可以使用 `extract` 函数:
```sql
SELECT extract(year from current_date) as year,
extract(month from current_date) as month,
extract(day from current_date) as day;
```
这将返回一个包含当前年、月、日的结果集。
阅读全文