如何执行 PL/SQL 自定义对象类型更新
我是 PL/SQL 编码新手,有以下问题:
我有表 Foo:
Foo:
foo1 number pk
foo2 varchar2
foo3 varchar2
foo4 Bar
bar 是一个包含属性的自定义数组对象:
Bar:
bar1 varchar2
bar2 varchar2
bar3 varchar2
如何编写更新 foo4 的更新语句?
我无法正确理解语法:/
I'm new to PL/SQL coding and I have the following question:
I have table Foo:
Foo:
foo1 number pk
foo2 varchar2
foo3 varchar2
foo4 Bar
bar is a custom-array object which holds attributes:
Bar:
bar1 varchar2
bar2 varchar2
bar3 varchar2
How do I write a update statement that updates the foo4?
I can't get the syntax right : /
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您是否尝试使用 SQL 语句来执行此操作以及这是否可能,但您可以通过 PL/SQL 执行此操作,如下所示(在 Oracle 10g 上测试):
HTH
Not sure if you were trying to do it with an SQL statement and if that is possible at all, but you can do it via PL/SQL, like this (tested on Oracle 10g):
HTH