日期:2014-05-17  浏览次数:20347 次

游标
 创建一游标,逐行显示Student表中的记录,要求按’学号’+’------’+’姓名’+’-------’+’性别’+’-------’+’所在系’+’--------’格式输出。
------解决方案--------------------
直接SELECT 拼接就行了
------解决方案--------------------
select cast(学号 as int)+’------'+cast(姓名 as int)+'------'+cast(性别 as int) from student

------解决方案--------------------


  --声明游标
  declare text_Cursor cursor forward_only for 
  select ID,Grade,Course From Student
  
  open text_Cursor
  declare @ID int
  declare @Grade int 
  declare @Course int
  
  --循环读取数据记录
  fetch next from text_Cursor into @ID,@Grade,@Course
  while @@FETCH_STATUS=0
  begin
  print 'ID='+convert(nvarchar(10),@ID)+space(3)+'Grade='+convert(nvarchar(10),@Grade)+space(3)+'Course='+convert(nvarchar(10),@Course)
  fetch next from text_Cursor into @ID,@Grade,@Course
  end
  
  --关闭、释放游标
  close text_Cursor
  deallocate text_Cursor

------解决方案--------------------
你为啥非要用游标?我快5年了都没用过....
------解决方案--------------------
 这样 ?

declare cur cursor for 
select rtrim(学号)+'------'+姓名+'-------'+性别'-------'+所在系+'--------' FROM 表名
declare @Out varchar(500)
open cur 
fetch next from cur into @Out
while @@FETCH_STATUS=0
begin
print @Out
fetch next from cur into @Out
end
close cur
deallocate cur

------解决方案--------------------
引用:
引用:你为啥非要用游标?我快5年了都没用过....

同意,为什么要用游标。效率不好,还麻烦


当逻辑复杂时,游标的性能才能体现。
------解决方案--------------------
引用:
这样 ?
SQL code?123456789101112declare cur cursor for select rtrim(学号)+'------'+姓名+'-------'+性别'-------'+所在系+'--------' FROM 表名declare @Out varchar(500)open cur fetch next from cur into @……

很巧妙,偷偷的学到了。

如果楼主以前没怎么用过游标,提供一个小例子希望能对LZ理解游标有那么丢丢帮助。

--测试数据准备
    if(object_id('t1') is not null)drop table t1
    CREATE table t1(
    id int identity(1,1) primary key,
    value nvarchar(20)
    )
    go
    --插入测试数据
    insert into t1(value)
    select '值1'union all
    select '值2'union all
    select '值3'union all
    select '值4'
     
    --查看结果集合
    --select * from t1