使用儲存過程批量新增資料例項

2021-10-09 04:26:59 字數 787 閱讀 7322

@使用儲存過程批量新增資料例項

insert_by,insert_at,update_by,update_at,audit_state,pay_state,pay_proof,dept_name,

area,pay_channel) values (i, concat(『fk20190815』,i), 『gys00001』, 『一汽大眾某某限公司』,

『中國某某錦江分行』, 『000000724124』, 『1000.89』, 『1』, 『我是增加的資料』,

『zzb00185』, 『2019-08-16 00:00:00』, 『zzb00185』, 『2019-08-15 17:31:03』, null, null, 『未提交』, 『』, 『』,

『風險與資產管理中心』, 『東城區』, 『現金/轉賬支票』);

set i=i+1; – //自增迴圈

end while;

end$$ – //儲存過程結束

呼叫儲存過程

call pre();

檢視已有的儲存過程

show procedure status;

檢視儲存過程的建表語句

show create procedure pre;

刪除儲存過程方法

drop procedure if exists pre;

使用儲存過程批量新增資料例項

使用儲存過程批量新增資料例項 insert by,insert at,update by,update at,audit state,pay state,pay proof,dept name,area,pay channel values i,concat fk20190815 i gys0000...

Sqlite批量新增資料

今天遇到了往sqlite資料庫裡插入1400多條資料的情況,結果每次都需要一兩分鐘才能完成.搜尋了一下,在這裡找到了解決辦法,所需要的時間直接變成不到2秒 internal static void fastinsertmany dbconnection cnn dbtrans.commit catc...

PHP批量新增資料

連線資料庫 header content type text html charset utf 8 define db host 127.0.0.1 define db user root define db pass root define db name test define db port ...