如何更新oracle DB中的多个表?
我在我的 oracle 10g 中使用两个表。第一个表有关键字、计数、id(主键),第二个表有 id、时间戳。
但是我在第一个表(关键字、计数)中进行任何更改,它将反映在我的第二个表时间戳上。我使用 id 作为两个表的参考...
table1:
CREATE TABLE Searchable_Keywords
(KEYWORD_ID NUMBER(18) PRIMARY KEY,
KEYWORD VARCHAR2(255) NOT NULL,
COUNT NUMBER(18) NOT NULL,
CONSTRAINT Searchable_Keywords_unique UNIQUE(KEYWORD)
);
table2:
CREATE TABLE Keywords_Tracking_Report
(KEYWORD_ID NUMBER(18),
PROCESS_TIMESTAMP TIMESTAMP(8)
);
如何使用另一个表的引用更新一个表..
请帮助我...
i am using two tables in my oracle 10g. the first table having the keyword,count,id(primary key) and my second table having id, timestamp..
but i am doing any chages in the first table(keyword,count) it will reflect on the my second table timestamp.. i am using id as reference for both the tables...
table1:
CREATE TABLE Searchable_Keywords
(KEYWORD_ID NUMBER(18) PRIMARY KEY,
KEYWORD VARCHAR2(255) NOT NULL,
COUNT NUMBER(18) NOT NULL,
CONSTRAINT Searchable_Keywords_unique UNIQUE(KEYWORD)
);
table2:
CREATE TABLE Keywords_Tracking_Report
(KEYWORD_ID NUMBER(18),
PROCESS_TIMESTAMP TIMESTAMP(8)
);
how can update one table with reference of another table..
help me plz...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 table1 上使用插入或更新后触发器来管理 table2。
Use an after insert or update trigger on table1 to manage table2.
您可以使用而不是触发器来执行此操作。
为此,您可以按照以下流程
创建视图。
触发器已创建。
现在使用单个 sql 语句就可以更新多个表
You can use instead of trigger to do this.
For this you follow the below process
View created.
Trigger created.
Now with single sql statement you can update multiple tables