【发布时间】:2018-10-05 00:49:52
【问题描述】:
我正在尝试从 psql 命令行使用 postgresql 数据库中的原始 SQL 在我的数据表中选择单个列。我收到一条错误消息,指出该列不存在。然后它提示我使用我在 select 语句中引用的确切列。这是查询:
SELECT insider_app_ownershipdocument.transactionDate FROM insider_app_ownershipdocument;
这是错误信息:
ERROR: column insider_app_ownershipdocument.transactiondate does not exist
SELECT insider_app_ownershipdocument.transactionDate FROM in...
HINT: Perhaps you meant to reference the column "insider_app_ownershipdocument.transactionDate".
我不知道为什么这不起作用。
【问题讨论】:
-
大写-交易日期与交易日期?
-
我试过那个
-
如果你不打电话给
insider_app_ownershipdocument.transactionDate只是transactiondate会发生什么?
标签: sql postgresql