gpt4 book ai didi

oracle - 使用记录类型对象更新表

转载 作者:行者123 更新时间:2023-12-04 18:30:42 25 4
gpt4 key购买 nike

我有一张 table 说 EMPLOYEREMPLOYER_ID作为主键。我编写了以下脚本来更新表中的一行:

declare
emp_row EMPLOYER%ROWTYPE;
begin
select * into emp_row from EMPLOYER where rownum <= 1;
emp_row.NAME := 'ABC';
emp_row.AGE := 99;
-- Can I write something like below?
update EMPLOYER set ??? = emp_row where EMPLOYER_ID = emp_row.EMPLOYER_ID;
end;

我可以在单个语句中使用记录类型对象更新一行吗?正如上面的例子所示。

最佳答案

请尝试这样的事情

update EMPLOYER set ROW = emp_row where EMPLOYER_ID = emp_row.EMPLOYER_ID;

请记住:此 UPDATE 设置表中每一列的值,包括您的主键,因此您应该非常小心地使用 SET ROW 语法。

关于oracle - 使用记录类型对象更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39221349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com