postgres服务器和excel的时间不同

时间:2017-11-14 13:06:46

标签: excel postgresql

我正在尝试一个按月分组数据的查询。

test_db=# select date_trunc('month', install_ts) AS month, count(id) AS count from api_booking group by month order by month asc;         
 month                  | count 
------------------------+-------
 2016-08-01 00:00:00+00 |   297
 2016-09-01 00:00:00+00 |  2409
 2016-10-01 00:00:00+00 |  2429
 2016-11-01 00:00:00+00 |  3512
(4 rows)

这是我的postgres db shell中的输出。

然而,当我在excel中尝试此查询时,这是输出

 month                  | count 
------------------------+-------
 2016-07-31 17:00:00+00 |   297
 2016-08-31 17:00:00+00 |  2409
 2016-09-30 17:00:00+00 |  2429
 2016-10-31 17:00:00+00 |  3512
(4 rows)

问题是我认为excel是在某个不同的时区理解日期格式。 那么,我如何告诉excel正确阅读呢? 或者这个问题的任何解决方案?

1 个答案:

答案 0 :(得分:1)

...试

---
title: "yaml header"
author: "cedric"
output:  
  word_document:
    toc: true
    pandoc_args: [
      "-M", "toc-title=Table des matières"
    ]
---

日期()从带有时间的日期中删除时间。