oracle中如何获取未知列

发布于 2024-10-12 01:00:17 字数 209 浏览 1 评论 0原文

Oracle 中是否有一个运算符可以获取结果集中的某一行的某一列,而无需指定该列的名称。我想要这样的东西:

for row in (select * from table1)
loop
  for col in row
  loop
     // do stuff with col
  end loop;
end loop;

谢谢。

Is there an operator in Oracle that fetch a column of a row in a result set without having to specify the column's name. I want something like:

for row in (select * from table1)
loop
  for col in row
  loop
     // do stuff with col
  end loop;
end loop;

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凤舞天涯 2024-10-19 01:00:17

没有为此的内置函数。您必须使用 DBMS_SQL 包才能使用动态 SQL: http://docstore .mik.ua/orelly/oracle/bipack/ch02_02.htm

There is no built in function for this. You will have to use DBMS_SQL package in order to use dynamic SQL : http://docstore.mik.ua/orelly/oracle/bipack/ch02_02.htm

↘紸啶 2024-10-19 01:00:17

在静态 SQL 中,没有。

如果您使用动态 SQL(通过 DBMS_SQL),您可以描述该语句并迭代列。但是,如果查询本身不是动态的,那么如果您转向使用 DBMS_SQL 而不是简单地编码您感兴趣的列名,那么几乎肯定会增加代码的复杂性并降低可维护性。

In static SQL, no.

If you were using dynamic SQL (via DBMS_SQL), you could describe the statement and iterate over the columns. But if the query itself is not dynamic, it would almost certainly increase the complexity of the code and decrease the maintainability if you were to move toward using DBMS_SQL rather than simply coding the column names that you're interested in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文