【发布时间】:2021-04-22 06:54:06
【问题描述】:
我添加了使用 with 的查询以从各种表中检索多组数据。但是很简单,查询甚至没有在 DBeaver 中执行。我不知道它为什么会返回
"SQL Error [42P01]: ERROR: relation "loc_cust_fields" does not exist Position: 27"
这是我的查询,我不知道我做错了什么。我正在使用客户端数据库服务器。数据库服务器有什么限制吗?但是他们的查询是用 WITH 函数运行的,请给我建议。
with
loc_cust_fields as
(
select identifier from job_base
)
select jb.identifier from loc_cust_fields as jb
【问题讨论】:
标签: postgresql common-table-expression dbeaver