单个组中的 SQL 游标值
我正在使用 SQL 游标。我想选择值
While(@@fetchstatus ==0)
BEGIN
if(cond)
SELECT rownumber, rowname FROM TABLE
END
在 While 循环的第一轮执行期间我得到了值。
1,“Firstrow”(从行选择)
下一个
2,“SecondRow”
所有这些值都在我的输出中显示为单独的行。是否可以像这样组合并显示为两个输出
1、“第一行”
2,"第二行"
I am using a SQL cursor. I want to select the values
While(@@fetchstatus ==0)
BEGIN
if(cond)
SELECT rownumber, rowname FROM TABLE
END
During the first round of execution of While loop I am getting the value.
1,"Firstrow"(From Row select)
Next
2,"SecondRow"
All these values are displayed in my output as separate rows. Is it possible to combine and display as two outputs like this
1, "FirstRow"
2,"SecondRow"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实需要在光标上循环,这可能会有所帮助:
If you realy need the loop over the cursor, this might be helpful: