缺少右括号和添加的列已存在于我的代码中显示的表错误中
Posted
技术标签:
【中文标题】缺少右括号和添加的列已存在于我的代码中显示的表错误中【英文标题】:Missing right parenthesis and column being added already exists in table error shown in my code 【发布时间】:2012-08-29 18:00:55 【问题描述】:我正在尝试运行此代码
declare
temp_atr_val varchar2(400);
temp_val varchar2 (400);
temp_sum_percent decimal (10,3);
temp_variable number (10,3);
column_count number ;
val_count number;
sales_store number;
begin
select count(distinct ATTRIBUTE_INPUT) into column_count from look_up_table;
for ind in 1..column_count loop
/* putting current value of attribute from look_up_table in temp variable*/
select ATTRIBUTE_INPUT into temp_atr_val from (
select ATTRIBUTE_INPUT, rownum rwn
from
(
select distinct ATTRIBUTE_INPUT
from look_up_table
)
) where rwn = ind;
select count( value_for_atr ) into val_count from look_up_table;
for ind in 1..val_count loop
/* putting current value_for_atr for corresponding attribute from look_up_table in temp variable*/
select value_for_atr into temp_val from
(
select value_for_atr, rownum rwn
from look_up_table
) where rwn = ind;
SELECT SUM(CASE WHEN temp_atr_val = temp_val THEN net_sales_home ELSE 0 END) into temp_variable
FROM schemafinal;
/*temp_variable := temp_variable/sales_store;*/
EXECUTE IMMEDIATE 'ALTER TABLE SAR ADD (percent_'||temp_val||' number)';
EXECUTE IMMEDIATE ' update SAR b
set b.percent_'||temp_atr_val||'_'||temp_val||' = 105 ';
END LOOP;
END LOOP;
END;
但每次代码显示 2 个错误之一时: ORA-01430: 正在添加的列已存在于表中
-
00000 - “缺少右括号”
当我检查 SAR 表时,其中只有 5 个新列。 我不知道为什么会这样,几乎所有方法都试过了。
【问题讨论】:
【参考方案1】:在不知道数据结构的情况下很难分析查询。
但我假设您在第二个循环选择查询中需要一个额外的 ATTRIBUTE_INPUT 条件来查找 temp_val。否则对于每个 ATTRIBUTE_INPUT temp_val 将返回相同的结果。
这意味着在第一次循环的第二次迭代中 temp_val 将与第一次迭代的旧值相同。所以 Alter table Add 查询会抛出错误。
所以请尝试添加一个额外的 ATTRIBUTE_INPUT 条件
/* putting current value_for_atr for corresponding attribute from look_up_table in temp variable*/
select value_for_atr into temp_val from
(
select value_for_atr, rownum rwn
from look_up_table
where ATTRIBUTE_INPUT = temp_atr_val
) where rwn = ind;
【讨论】:
我试过了,没有显示任何错误。但现在新列未添加到 SAR 表中。我不知道临时变量是否具有正确的值。我该如何检查?以上是关于缺少右括号和添加的列已存在于我的代码中显示的表错误中的主要内容,如果未能解决你的问题,请参考以下文章