pgsql timestamp
时间: 2023-10-26 13:05:58 浏览: 202
postgresql + mybatis传入时间参数的问题.md
5星 · 资源好评率100%
PGSQL中的timestamp是一种时间类型,它覆盖了年月日时分秒。在PostgreSQL7.3以前,只写timestamp等效于timestamp with time zone,这是为了和SQL兼容。SQL标准通过"+"或者"-"是否存在来区分timestamp without time zone和timestamp with time zone文本。因此,根据标准,TIMESTAMP '2004-10-19 10:23:54'。除了timestamp,PGSQL中还有date(年月日)和time(时分秒)这两种核心的时间类型。
阅读全文