需要将1/1000秒分辨率的时间戳转换为1/100分辨率。为此,我可以使用to_char(timestamp, text)
格式化函数,但是这里需要使用text
的帮助。
输入表(注意-这里的时间戳存储为varchar)
+-------------------------+
| ms1000_val |
+-------------------------+
| 2017/02/20 08:27:17.899 |
| 2017/02/20 08:23:43.894 |
| 2017/02/20 08:24:41.894 |
| 2017/02/20 08:28:09.899 |
+-------------------------+
输出表
+------------------------+
| ms100_val |
+------------------------+
| 2017/02/20 08:27:17.89 |
| 2017/02/20 08:23:43.89 |
| 2017/02/20 08:24:41.89 |
| 2017/02/20 08:28:09.89 |
+------------------------+
最佳答案
可以在括号中指定,如下所示:
t=# select now()::timestamp(2);
now
------------------------
2017-03-16 09:55:21.15
(1 row)
正如OP所注意到的,http://rextester.com/CBZ17212产生不同的结果,然后运行
psql
:t=# CREATE TABLE Table1
t-# ("ms1000_val" varchar(23))
t-# ;
CREATE TABLE
t=#
t=# INSERT INTO Table1
t-# ("ms1000_val")
t-# VALUES
t-# ('2017/02/20 08:27:17.892'),
t-# ('2017/02/20 08:23:43.891'),
t-# ('2017/02/20 08:24:41.897'),
t-# ('2017/02/20 08:28:09.893')
t-# ;
INSERT 0 4
t=# select ms1000_val::timestamp(2) as time_formatted
t-# from Table1;
time_formatted
------------------------
2017-02-20 08:27:17.89
2017-02-20 08:23:43.89
2017-02-20 08:24:41.9
2017-02-20 08:28:09.89
(4 rows)
关于sql - 时间戳格式-从1/1000秒到1/100秒,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42830565/