INSERT得到错误PLS-00904:stud.col3是无效的标识符

时间:2018-05-27 09:08:17

标签: oracle stored-procedures plsql cursor

在我的存储过程中,如果 col1 的值为& col2 与员工匹配,然后插入员工的唯一记录。如果未找到,则匹配 col1 col2 &的值 col3 员工 匹配,然后插入值。如果在匹配所有这些列时也找不到,则使用另一列插入记录。

我想要的另一件事是通过传递另一个列值找到像 emp_id 这样的值列表,如果单个记录不能匹配,那么make emp_id NULL

此外,我想在与 txt 匹配后一次插入一条记录,以及其他包含 \ temp 等数据的表格。

create or replace procedure sp_ex
as
    cursor c1 is select * from txt%rowtype;
    v_col1 tbl1.col1%type;
    type record is table of txt%rowtype;  --Staging table
    v_rc record := record();
begin
    open c1;
    loop 
        fetch c1 bulk collect into v_rc limit 1000;

        loop
            for i in 1..v_rc.count loop
                select col1 into v_col1 from tbl1
                where  exists (select col1 from tbl1 where tbl1.col1 = emp.col1);

                insert 
                    when txt.col1 = emp.col1 and txt.col2 = stud.col2 then
                         into main_table(columns) values(v_rc(i).col1, ...)

                    when txt.col1 = emp.col1 and txt.col2 = stud.col2 and txt.col3 = stud.col3 then 
                         into main_table(columns) values(v_rc(i).col1, ...)

                    else 
                         insert into main_table(columns) values(v_rc(i).col1, ...)
                         select * from txt;
                end loop;
                exit when v_rc.count < limit;

        end loop;
        close c1;
end sp_ex;

虽然 emp stud 是我必须与 txt 匹配的不同表格。 在该存储过程中,我想在批处理模式下将 txt 中的数据加载到 main_table 中。如果匹配条件匹配,则数据将逐个匹配,然后加载到主表中。如何创建存储过程,以便数据将在批处理中逐个加载逻辑。能帮我分享一下你的想法吗?感谢

1 个答案:

答案 0 :(得分:3)

语法似乎相当混乱。

Multi-table insert是这样的:

insert all  -- alternatively, "insert first"
    when dummy = 'X' then
        into demo (id) values (1)
    when dummy = 'Y' then
        into demo (id) values (2)
    else
        into demo (id) values (3)
select * from dual;

或许你想要一个PL/SQL case statement

case
    when dummy = 'X' then
        insert into demo (id) values (1);
    when dummy = 'Y' then
        insert into demo (id) values (2);
    else
        insert into demo (id) values (3);
end case;

相反,似乎有两者的混合。

还有一个缺少end loop和一个没有select col1 from tbl1子句的隐式游标(into)。