一點執行個體明白mysql資料庫預存程序

來源:互聯網
上載者:User

標籤:mysql   預存程序   mysql預存程序   資料庫預存程序   sql預存程序   

mysql預存程序: 封裝sql:
        
create procedure p1()beginselect  * from t_news;end $         //mysql預存程序 簡單一實例
顯示預存程序資訊:  \G (橫向表格採用縱向表格輸出)



delimiter $  改變執行符號,直到mysql碰到$ 開始執行語句命令 set  names     解決mysql亂碼問題  但mysql重啟後又還原到以前字元集狀態
call 預存程序名字 ()  調用預存程序
參數:   
create procedure p2(n int)    #含參beginselect  * from t_category where cid > n;end $      


控制結構:      
create procedure p3(n int, j char(1))    #含參begin  if j='h'  then       #與其他語言不同 必須加then 注意符號= 不是== select  * from t_category where cid > n;elseselect  * from t_category where cid <n;   end if;end $    


計算1....n的和:  
create procedure p4(n smallint)    #含參begin  declare  i int;declare s int;set s = 0;set i = 1;while i<=n doset s =s+i;set i=i+1;end while;select s;end $      


預存程序和函數的區別:          名稱不同  :預存程序:procedure    函數function 預存程序沒有返回值
相關文章

聯繫我們

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