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

SQL中的Continue和Break

时间:2017-04-18 09:43:24      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:sql语句   varchar   begin   demo   class   包含   nbsp   logs   循环   

x

在Sql Server中,sql语句包含While循环的时候,肯定都或多或少的用到Continue和Break...

下面撸了一个小Demo

Declare @Index Int = 0,@EndIndex Int = 0

While  @Index < 100
    Begin
        Set @EndIndex = @EndIndex + 1
        Print Continue 之后Index增加... + Convert(Varchar(1000),@Index)
        If @EndIndex > 100
            Begin
                Print 防止死循环...*************************************************
                Break
            End
            
        Continue
        Set @Index =@Index + 1
    End

Set @Index = 0

While  @Index < 100
    Begin
        Print Continue 之前Index增加... + Convert(Varchar(1000),@Index)
        Set @Index =@Index + 1
        Continue
    End

Set @Index = 0
While  @Index < 100
    Begin
        Print Break Index... + Convert(Varchar(1000),@Index)
        Break
    End

 

 

x

 

SQL中的Continue和Break

标签:sql语句   varchar   begin   demo   class   包含   nbsp   logs   循环   

原文地址:http://www.cnblogs.com/love-zf/p/6726020.html

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