SQL Server中的流量控制語句

來源:互聯網
上載者:User

標籤:ble   while語句   --   strong   delay   echo   語句   bre   where   

  • begin···end

該語句定義sql代碼塊,通常在if和while語句中使用

declare @num int ;set @num=0;while  @num<10begin  set @num=@num+1;  print ‘hello word‘end

 

  • if···else

條件判斷語句,其中else是可選的

if  (select sex from UserBasic where name=‘張三‘)=1    print ‘張三的性別是:男‘else    print ‘張三的性別是:女‘

 

  •  while、break、continue
declare @num int ;set @num=0;while  @num<10begin  set @num=@num+1;  print ‘hello word‘    if @num=2        continue    if @num=5        breakend

說明:本例輸出5行 hello word

 

  • goto label(自訂標籤)

該語句用來無條件地將語句的執行順序轉到使用者定義的lable處

declare @num int;set @num=0;echo:    print ‘hello word‘set @num=@num+1;while  @num<10begin  goto echoend

 

  • return

該語句用來無條件退出一個查詢或一個過程

declare @num int ;set @num=0;while  @num<10begin  set @num=@num+1;  print ‘hello word‘    if @num=5        returnend

 

  • waitfor delay/time

該語句用來定義某天的一個時刻,執行一個語句塊。waitfor delay ‘time‘表示要等待多長時間,waitfor time ‘time‘表示要等到哪個時刻執行。

樣本:10秒之後輸出‘hello word’

waitfor delay ‘00:00:10‘print ‘hello word‘ --或print ‘hello word‘ waitfor delay ‘00:00:10‘

 

樣本:12:00鐘輸出‘hello word’

waitfor time ‘12:00:00‘print ‘hello word‘ --或print ‘hello word‘ waitfor time ‘12:00:00‘

 

SQL Server中的流量控制語句介紹的這裡。

SQL Server中的流量控制語句

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.