使用PostgreSQL数据源

时间:2018-03-28 15:58:04

标签: sql postgresql google-data-studio quoted-identifier

希望对Google Data Studio中的问题提供一些帮助。

我正在尝试使用Postgres数据库中的数据创建包含累计和月度帐户创建的时间图。

我正在连接到使用自定义SQL从Postgres数据库中提取的数据源。当我在data studio中运行查询时,它会毫无问题地提取列:

Index | Field     | Type           | Aggregation | Description
1     | createdAt | Date (YYYYMMDD)| None        | 
2     | count     | Number         | Sum
3     | cumulative| Number         | Sum

但是,当我尝试使用Dimension“createdAt”和Metric“count”创建图表时,出现以下错误:

“查询返回了错误。

Error with SQL statement: ERROR: column "createdat" does not exist
  Hint: Perhaps you meant to reference the column "t0.createdAt".
  Position: 8
Error ID: bbd9f163"

我尝试使用TODATE更改“createdAt”列的格式,但是当我使用如下公式时出现“无效公式”错误:“TODATE(createdAt,'DEFAULT_DECIMAL','%Y%m %d')“

有关错误根本原因以及如何解决错误以创建所需图表的任何建议?

谢谢!

0 个答案:

没有答案