我使用以下查询来获取日期:
从TABLE_NAME中选择to_char(CAST(“COLUMN_NAME”AS DATE),“DY”)
我如何获得时间组件?
先谢谢。
答案 0 :(得分:0)
postgres = #create table test_tim(tim TIMESTAMP WITH TIME ZONE);
创建表
postgres =#insert into test_tim values(current_timestamp);
INSERT 0 1
postgres =#select to_char(蒂姆,' HH24:MI:SS')来自test_tim;
15时56分00秒 (1排)