【瞎折騰系列】mysql預存程序初接觸

來源:互聯網
上載者:User

標籤:style   blog   color   io   for   ar   art   cti   

開始【瞎折騰系列】,這個系列純屬瞎折騰,可能沒有什麼實際意義。

mysql預存程序產生表:

建立一張user表,包含id, username , password , usertable欄位。

然後建立預存程序:

create PROCEDURE create_table()BEGINDECLARE n int DEFAULT 0;DECLARE t_error INTEGER DEFAULT 0;  DECLARE CONTINUE HANDLER FOR SQLEXCEPTION SET t_error=1;temp_loop:LOOPSTART TRANSACTION;  SET @m=replace(UUID(),‘-‘,‘‘);set @str=concat(‘create table x‘,@m,‘(id int)‘);prepare stmt FROM @str;EXECUTE stmt;set @insertstr=concat(‘insert into user(username,password,usertable) values("test","testp","x‘,@m,‘")‘);prepare stmt1 FROM @insertstr;EXECUTE stmt1;IF t_error = 1 THEN  ROLLBACK;          ELSE              COMMIT;          END IF;  set n=n+1;IF n>=2000 THEN LEAVE temp_loop;END IF;END LOOP;END

通過UUID()擷取UUID,然後去掉-線,然後在前面加個x,為什麼加x呢,因為直接用UUID做表名有時候會報錯,具體原因不明。

然後產生username,password,再把產生的表名插入到usertable欄位中。

通過CALL creat_table();執行預存程序。

相關文章

聯繫我們

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