Sql server cursor问题

有一张表,数据如下

https://img3.mukewang.com/5b7137c00001c06902920241.jpg

编写如下sql语句

/****** Script for SelectTopNRows command from SSMS  ******/declare @output nvarchar(max)declare @year char(4)declare @startdate datetimedeclare reader cursor forSELECT distinct TOP 10 [cme_year]
      ,[start_date]FROM [ayn_cme_year] order by cme_yearopen readerfetch next from reader into @year,@startdatewhile @@fetch_status=0beginset @output=@output+convert(nvarchar(4),@year)+' '+convert(nvarchar(10),@startdate)+' '
 fetch next from reader into @year,@startdateendselect @outputclose readerdeallocate reader

执行之后无结果,为什么?

https://img.mukewang.com/5b7137db0001ce5a01990246.jpg

青春有我
浏览 807回答 1
1回答

BIG阳

在使用@output之前初始化一下就对了 set @output=''
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server