将表名作为sql的输入
我需要将表名作为用户输入到我的 PL/SQL 脚本中,然后更新该表。我不确定这是否可能,因为 ORACLE 可能在解析脚本时遇到问题。
请指导我如何解决这个问题。
谢谢。
I need to take a table name as input from user to my PL / SQL script and then update that table. I am not sure if this is possible because ORACLE might have problem parsing the script.
Please guild me as to how to solve this problem.
Thnx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用立即执行。它允许您将 SQL 语句构建为 VARCHAR2 字符串,然后执行该语句。
例如。
当然,COLUMN-NAME 和 VALUE 也可以动态更改。
http://download.oracle.com/docs/cd /B12037_01/appdev.101/b10807/13_elems017.htm
Use EXECUTE IMMEDIATE. It allows you to build a SQL statement as a VARCHAR2 string and then execute that statement.
eg.
COLUMN-NAME and VALUE can also be changed dynamically of course.
http://download.oracle.com/docs/cd/B12037_01/appdev.101/b10807/13_elems017.htm