我正在尝试运行一个UPDATE语句,其中包含两个引用更新表的子级查询,但是收到错误。 请考虑以下代码。它给了我“c.end_date invalid identifier”错误,好像表c(更新的表)在最深的子查询中不可见。 如果我将子查询展平为只有一个级别的子查询,我就会忽略它背后的逻辑。
有关如何编写此内容的任何想法,以便编译并正常工作吗?
我正在使用Oracle数据库10g企业版10.2.0.3.0版 - Prod
create table calc(
agrmt_id number,
cust_num number,
prod_id number,
price number,
start_date date,
end_date date);
create table trans(
agrmt_id number,
cust_num number,
prod_id number,
units number,
trans_date date);
create table products(
prod_id number,
other_prc number,
prod_start date,
prod_end date);
update calc c set price = (with avg_price_per_prod as (select prod_id, avg(other_prc) avg_prc
from products
where prod_end >= c.start_date
and prod_start <= c.end_date
group by prod_id
) select sum(t.units) * a.avg_prc
from trans t, avg_price_per_prod a
where t.trans_date between c.start_date and c.end_date
and t.agrmt_id=c.agrmt_id
and t.cust_num=c.cust_num
and t.prod_id = a.prod_id
);
答案 0 :(得分:0)
您不能在子子查询(因子或其他)中引用更新的表c
。你必须消除它,也许是这样的(未经测试):
update calc c set price = (
select sum(t.units) * avg(other_prc)
from trans t, products p
where t.trans_date between c.start_date and c.end_date
and t.trans_date between p.prod_start and p.prod_end
and t.prod_id = p.prod_id
and t.agrmt_id=c.agrmt_id
and t.cust_num=c.cust_num
)