在 oracle 中获取运行时变量的值
我想在不声明变量的情况下将列的值获取到运行时变量中。
在oracle中可以吗?
例如:- 在 mysql 中我可以说
select 1 into @myvar;
I want to get a value of a column into a runtime variable without declaring the variable.
Is it possible in oracle?
For Ex:- in mysql I can say
select 1 into @myvar;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 Oracle 中的运行时变量是指 SQL*Plus 中的替换变量,那么您可以这样做:
If by
runtime variable
in oracle
, you meansubstitution variable
in SQL*Plus
, then you can do this: