标签: sql postgresql datetime
例如,当我执行以下查询
select now()::time
结果将是
"10:48:28.421"
那么如何获得AM / PM的时间? (例如10:48:28 AM)
注意:我的计算机位置设置为English(United States),PostgreSQL区域设置也是
English(United States)
答案 0 :(得分:3)
试试这个
Select to_char(now()::Time, 'HH12:MI:SS AM')
的 Live Demo 强>
输出:
TO_CHAR 05:00:12 AM
参考 Formatting Functions
答案 1 :(得分:1)
使用to_char()和您需要的模式。