无法将数据插入新列
您好,我正在尝试编写电子邮件代码,以在 Oracle APEX 的交互式网格中自动更新。它一直说我的列标识符需要定义,但它是由每个表定义的。
select
t.email into O.email
from Master_Tech_Email t, MASTER_COURSE_OWNER O
where O.Technology = t.Technology;
Hi I'm trying to write code for an email to auto update in an interactive grid in Oracle APEX. It keeps saying that my column identifier needs to be defined however it is defined by each table.
select
t.email into O.email
from Master_Tech_Email t, MASTER_COURSE_OWNER O
where O.Technology = t.Technology;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为是对成句的误解。
如果您想根据技术列更新 MASTER_COURSE_OWNER 表中的电子邮件列,请尝试此
(Because of tags include sql and oracle I am sharing both of it)
对于 Oracle:
我正在为 Oracle 这里
For SQL:
我在此处放置了 SQL 的实时示例
I think a misunderstanding into clause.
If you want to update email column in MASTER_COURSE_OWNER table based on Technology column try this
(Because of tags include sql and oracle I am sharing both of it)
For Oracle:
I am putting a live sample for Oracle here
For SQL:
I am putting a live sample for SQL here