PostgreSQL在时间类型中显示毫秒

lhcgjxsq  于 2022-11-04  发布在  PostgreSQL
关注(0)|答案(1)|浏览(829)

为什么当我选择时间类型只显示小时,分钟和秒,而不是毫秒像在SQL Server?我尝试使用精度在时间类型,如time(6),但它是行不通的。和时间类型的精度是什么意思,如果它不存储毫秒?

select now()::time(6)

返回

10:23:00
y1aodyip

y1aodyip1#

仅显示小时、分钟和秒:

select now() ::time(0);

以最大精确度显示时间信息:

select now() ::time(6);

以毫秒级显示时间信息。

select now() ::time(3);

相关问题