循环语句是SQL中最常用的语句之一,下面就将以实例的方式示范SQL中循环语句的效果,供您参考,希望对您学习SQL中循环语句能够有所帮助。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:主机域名、网络空间、营销软件、网站建设、吴起网站维护、网站推广。
假设HRS_Group存在7条记录,GroupID分别为3、4、5、6、7、13、14
执行如下Sql语句:
- declare @sSql varchar(8000)
- select @sSql = ''
- select @sSql = @sSql + 'alter table #tt add A' + rtrim(convert(varchar(20), GroupID)) + ' decimal(5, 1) ' + CHAR(10)
- from HRS_Group where Type = 0 order by GroupID
- select @sSql
执行得到@sSql的值:
- ----------------------------------------------------------------------------------------
- alter table #tt add A3 decimal(5, 1)
- alter table #tt add A4 decimal(5, 1)
- alter table #tt add A5 decimal(5, 1)
- alter table #tt add A6 decimal(5, 1)
- alter table #tt add A7 decimal(5, 1)
- alter table #tt add A13 decimal(5, 1)
- alter table #tt add A14 decimal(5, 1)
- ----------------------------------------------------------------------------------------
该Sql语句
- select @sSql = @sSql + 'alter table #tt add A' + rtrim(convert(varchar(20), GroupID)) + ' decimal(5, 1) ' + CHAR(10)
- from HRS_Group where Type = 0 order by GroupID
是通过以GroupID大小为顺序,从数据库7次取值而对@sSq进行了7次拼接,起到了循环的效果,CHAR(10)表示换行
若将以上语句做如下修改:
- declare @sSql varchar(8000)
- select @sSql = 'alter table #tt add A' + rtrim(convert(varchar(20), GroupID)) + ' decimal(5, 1) ' + CHAR(10)
- from HRS_Group where Type = 0 order by GroupID
- select @sSql
执行得到@sSql的值:
- ----------------------------------------------------------------------------------------
- alter table #tt add A14 decimal(5, 1)
- ----------------------------------------------------------------------------------------
是通过以GroupID大小为顺序,从数据库7次取值而对@sSq进行了7赋值,但因为没有拼接,所以@sSql只保留了第7次的赋值
文章题目:SQL中循环语句的效果实例
链接URL:http://www.shufengxianlan.com/qtweb/news48/50748.html
成都网站建设公司_创新互联,为您提供企业网站制作、全网营销推广、搜索引擎优化、定制网站、商城网站、服务器托管
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联