gpt4 book ai didi

postgresql - 什么是 postgresql 查询来查找没有时区的时间戳

转载 作者:行者123 更新时间:2023-11-29 12:50:05 24 4
gpt4 key购买 nike

select now();
now
----------------------------------
2019-06-01 16:10:19.893354+05:30

我只想要没有时区的日期和时间。获取今天的日期和时间的查询是什么。例如:2019-06-01 16:10:19

最佳答案

你可以转换值:

select CAST(now() as timestamp without time zone)

如果你不想要毫秒,你可以使用to_char():

select to_char(CAST(now() as timestamp without time zone), 'YYYY-MM-DD HH24:MI:SS')

关于postgresql - 什么是 postgresql 查询来查找没有时区的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56405971/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com