mysql資料庫存過例項

2021-05-26 07:31:26 字數 838 閱讀 5359

create procedure bb_test_updatedb()

begin

declare test_i int default 0;

declare test_char varchar(255) default 'test';

insertdb: while(test_i<50) do

set test_char= convert(test_i,char);

update bb_test_ssid set vhmname = concat('vhm300',test_char) where id = test_i;

set test_i=test_i+1;

end while insertdb;

commit;

endcreate procedure bb_test_updatedb()

begin

declare test_k int default 1;

declare var_char varchar(255);

updatedb: while(test_k<20) do

set var_char=(select substring(vhmemail,1,12) from bb_test_ssid where id=test_k);

select var_char;

update bb_test_ssid set vhmname=var_char where id=test_k;

commit;

set test_k=test_k+1;

select test_k;

end while updatedb;

end;

mysql資料庫存歌曲 MySQL資料庫

資料庫基礎 1.什麼是資料庫?資料庫 database,儲存資料的倉庫 資料庫 高效的儲存和處理資料介質 介質主要是兩種 磁碟和記憶體 2.資料庫的分類?資料庫基於儲存介質的不同,進行了分類。分為兩類 關係型資料庫 sql 和非關係型資料庫 nosql not only sql,不是關係型的資料庫都...

mysql資料庫存入特殊字元

直接上 實現 import pymysql config 連線資料庫 con pymysql.connect config 獲得運算元據庫的游標 cursor con.cursor ck 123 sql insert into db ch values s params一般情況為元組 params ...

mysql判斷庫存寫入資料庫

電商商品 時必須判斷庫存,下面舉例了兩種寫法,寫法一是常見的錯誤寫法,併發量大的時候會出現意外,寫法2為改進後 begintranse 開啟事務 trycatch e exception catch e exception catch e exception rollback 回滾 commit 提...