如何使用 FOR 光标循环访问记录中的串联列

发布于 2024-12-27 04:32:29 字数 652 浏览 1 评论 0原文

尝试将记录与游标和后来的按表索引混合使用。

DECLARE CURSOR emp_cur IS
    SELECT employee_id, first_name||' '|| last_name "name"
    FROM employees 
    ORDER BY salary desc;

emp_rec emp_cur%ROWTYPE;

BEGIN 
    FOR emp_rec IN emp_cur
    LOOP
        DBMS_OUTPUT.PUT_LINE('Employee ID:'||emp_rec.employee_id||CHR(10)||
                             'Employee Name:'||emp_rec.name);
        EXIT WHEN emp_cur%ROWCOUNT = 10;
    END LOOP;
END;

当我运行上面的代码时,我得到了

 ERROR at line 13, "NAME" must be declared.

How can I access the columns first_name||' '||For 循环内的last_name?或者我只需要执行传统的 OPEN、简单循环、FETCH 和关闭?

Trying to use records with the cursor and later index by table in the mix.

DECLARE CURSOR emp_cur IS
    SELECT employee_id, first_name||' '|| last_name "name"
    FROM employees 
    ORDER BY salary desc;

emp_rec emp_cur%ROWTYPE;

BEGIN 
    FOR emp_rec IN emp_cur
    LOOP
        DBMS_OUTPUT.PUT_LINE('Employee ID:'||emp_rec.employee_id||CHR(10)||
                             'Employee Name:'||emp_rec.name);
        EXIT WHEN emp_cur%ROWCOUNT = 10;
    END LOOP;
END;

When I run above code I get

 ERROR at line 13, "NAME" must be declared.

How can I access the column first_name||' '||last_name inside the For loop? or do I just have to do traditional OPEN, simple loop, FETCH and close?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初熏 2025-01-03 04:32:30

你们非常接近;问题在于,不在双引号中的标识符会转换为大写,而双引号中的标识符不会转换为大写。所以 nameNAME"NAME" 是等价的,并且都与 "name"< /代码>。要么将 this: 更改

first_name||' '|| last_name "name"

为:,

first_name||' '|| last_name name

或者,如果您愿意,也可以将 this: 更改

'Employee Name:'||emp_rec.name

为:

'Employee Name:'||emp_rec."name"

You're very close; the problem is just that identifiers that are not in double-quotes get converted to uppercase, while identifiers that are in double-quotes do not. So name, NAME, and "NAME" are equivalent to each other, and all of them are different from "name". Either change this:

first_name||' '|| last_name "name"

to this:

first_name||' '|| last_name name

or else, if you prefer, change this:

'Employee Name:'||emp_rec.name

to this:

'Employee Name:'||emp_rec."name"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文