您好,登錄后才能下訂單哦!
這篇文章主要講解了如何使用mysql自定義函數(shù),內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
-- 不行的代碼:Not allowed to return a result set from a function create function myf()returns int begin select * from student; return 100; end;
create function 函數(shù)名([參數(shù)列表]) returns 數(shù)據(jù)類型 begin sql語(yǔ)句; return 值; end;
-- 最簡(jiǎn)單的僅有一條sql的函數(shù) create function myselect2() returns int return 666; select myselect2(); -- 調(diào)用函數(shù) -- create function myselect3() returns int begin declare c int; select id from class where cname="python" into c; return c; end; select myselect3(); -- 帶傳參的函數(shù) create function myselect5(name varchar(15)) returns int begin declare c int; select id from class where cname=name into c; return c; end; select myselect5("python");
-- 無(wú)參調(diào)用 select myselect3(); -- 傳參調(diào)用 select myselect5("python"); select * from class where id=myselect5("python");
看完上述內(nèi)容,是不是對(duì)如何使用mysql自定義函數(shù)有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。