mysql流程式控制制、自訂函數、預存程序

來源:互聯網
上載者:User

標籤:style   blog   使用   strong   io   cti   ar   div   

修改結束符dilimiter $$

分支

  if 條件 then 語句

  else if 條件 then 語句

  else 語句

  end if;

迴圈

  while 條件 do

  迴圈體

  end while;

使用者自訂變數

  典型的變數:欄位名就是變數,還有一些系統內建的變數

  使用者自訂變數需要使用 @作為變數名的首碼,用於區分是否是系統內建變數!

  set 變數名=變數值!  //賦值set @height=10;

  取值  //select @height;

系統內建函數

 

rand(),產生隨機數的函數,得到0-1之間的隨機數

 

floor()向下取整:

 

substring(字串,位置,長度),截取字串函數(以1開始為下標)

concat(‘‘,‘‘);串連兩個字串

 

char_length()字元數量

 

length()位元組長度

convert(字串 using 字元集) 字元轉換到相應的目標字元集上

 

自訂函數,基於庫(調用:sumN(5)) 函數內聲明局部變數declare

delimiter $$create function sumN (n int) returns intbegin-- 定義局部迴圈變數declare i int default 1;declare sum int default 0;while i<=n do -- 判斷迴圈變數-- 累加求和 sum = sum + i;set sum = sum+i;-- 迴圈變數變化set i = i + 1;end while;-- fanhui sumreturn sum;end$$delimiter ;

  

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.