单个组中的 SQL 游标值

发布于 2024-08-18 22:43:35 字数 344 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

绝影如岚 2024-08-25 22:43:35

如果您确实需要在光标上循环,这可能会有所帮助:

-- create temptable
select top 0 rownumber, rowname 
into #temp
from table

-- loop through your cursor
While(@@fetchstatus ==0)
BEGIN
  if(cond)
  begin
    insert into #temp
    SELECT rownumber, rowname FROM TABLE
  end
END

select rownumber, rowname from #temp

drop #temp

If you realy need the loop over the cursor, this might be helpful:

-- create temptable
select top 0 rownumber, rowname 
into #temp
from table

-- loop through your cursor
While(@@fetchstatus ==0)
BEGIN
  if(cond)
  begin
    insert into #temp
    SELECT rownumber, rowname FROM TABLE
  end
END

select rownumber, rowname from #temp

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