如何通过在 PL/SQL 中查询另一个数据库来设置一个数据库中的值?
我是 PL/SQL 新手...我正在寻找一种方法来做到这一点:
- 根据某些条件查询数据库。
- 根据这些条件的结果更新不同的 具有特定值的数据库表。
例如
数据库:A(包含我想要查询的数据)
数据库:B(包含我希望更新的两列的表)
condition.sql:
select typ_cd
from A.mytable
where typ_cd = "AAA"
if typ_cd = "AAA" UPDATE B SET VAL = "P"
如果有人能告诉我如何将伪代码转换为工作PL/,我将不胜感激SQL 脚本。
Am a PL/SQL newbie... Am seeking a way to do this:
- Query a database based on certain conditions.
- Based on results of these conditions to update a different
database's table with specific values.
e.g.
Database: A (contains data that I seek to query)
Database: B (contains table with 2 columns that I wish to update)
condition.sql:
select typ_cd
from A.mytable
where typ_cd = "AAA"
if typ_cd = "AAA" UPDATE B SET VAL = "P"
Would appreciate it if someone could how me how to convert my pseudocode into a working PL/SQL script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个,
我希望这会起作用。
愉快的询问......
尚穆根
Try this,
I hope this should work.
Happy querying....
Shanmugam