我选择的日期列格式为“YYYY-MM-DD”。
我想将它转换为时间戳,以便它是“YYYY-MM-DD HH:MM:SS:MS”
我试过了:
select CAST(mycolumn as timestamp) from mytable;
但这导致格式为YYYY-MM-DD HH:MM:SS
我也试过
select TO_TIMESTAMP(mycolumn,YYYY-MM-DD HH:MM:SS:MS) from mytable;
但这也不起作用。我似乎无法弄清楚格式化的正确方法。请注意,我只想要毫秒的第一个数字。
//////////////第二个问题
我也在尝试选择数字数据,这样就不会有任何尾随零。
例如,如果我在表中有值,例如1,200,3.34,4.50。
我希望能够选择这些值为1,2,3.34,4.5。
我尝试使用:: float,但我偶尔输出奇怪的东西。我也试过了舍入功能,但是如果我不知道手头需要多少小数点怎么能正确使用呢?
感谢您的帮助!
答案 0 :(得分:3)
遗憾的是,函数to_timestamp()
和to_char()
并不完美。
如果找不到更好的方法,请使用以下解决方法:
with example_data(d) as (
values ('2016-02-02')
)
select d, d::timestamp || '.0' tstamp
from example_data;
d | tstamp
------------+-----------------------
2016-02-02 | 2016-02-02 00:00:00.0
(1 row)
create function my_to_char(numeric)
returns text language sql as $$
select case
when strpos($1::text, '.') = 0 then $1::text
else rtrim($1::text, '.0')
end
$$;
with example_data(n) as (
values (100), (2.00), (3.34), (4.50))
select n::text, my_to_char(n)
from example_data;
n | my_to_char
------+------------
100 | 100
2.00 | 2
3.34 | 3.34
4.50 | 4.5
(4 rows)
另请参阅:How to remove the dot in to_char if the number is an integer
答案 1 :(得分:1)
SELECT to_char(current_timestamp, 'YYYY-MM-DD HH:MI:SS:MS');
打印
2016-02-05 03:21:18:346
答案 2 :(得分:0)
只添加:: timestamp不带时区
select mycolumn::timestamp without time zone from mytable;