码迷,mamicode.com
首页 > 数据库 > 详细

SQL中游标的用法

时间:2016-06-21 17:37:31      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

游标:是用来对表从上下每行循环取值,将值连接成为字符串.
例子:
对 pubs 数据库的dbo.titles 表。
1.取得表中的总价格:select sum(price) from dbo.titles
2.但是我想得到这样一个结果:书名,价格。
精通ASP,39元;学习vc++,28元;JAVA编程,23元
则用到游标:

声明游标:
declare titprice CURSOR FAST_FORWARD for
select title, price from dbo.titles where price<15

打开游标:
open titprice

循环取质
fetch next from titprice into @strtitle, @strprice
while @@fetch_status=0
begin
if @str=‘‘
set @str=@strtitle+‘: ‘+Convert(varchar(20),@strprice)
else
set @str=@str+@strtitle+‘: ‘+Convert(varchar(20),@strprice)

fetch next from titprice into @strtitle,@strprice
end

关闭游标
close titprice
释放游标
DEALLOCATE titprice


print @str

SQL中游标的用法

标签:

原文地址:http://www.cnblogs.com/taiyonghai/p/5604052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!