mysql不支持數組。但有時候需要組合幾張表的數據,在存儲過程中,經過比較複雜的運算獲取結果直接輸出給調用方,比如符合條件的幾張表的某些欄位的組合計算,mysql臨時表可以解決這個問題.臨時表:只有在當前連接情況下, temporary表才是可見的。當連接關閉時,TEMPORARY 表被自動取消。 ...
mysql不支持數組。但有時候需要組合幾張表的數據,在存儲過程中,經過比較複雜的運算獲取結果直接輸出給調用方,比如符合條件的幾張表的某些欄位的組合計算,mysql臨時表可以解決這個問題.臨時表:只有在當前連接情況下, TEMPORARY 表才是可見的。當連接關閉時, TEMPORARY 表被自動取消。必須擁有 create temporary table 許可權,才能創建臨時表。可以通過指定 engine = memory; 來指定創建記憶體臨時表。
先建立要用的數據表及數據:
drop table if exists person; create table `person` ( `id` int(11)primary key NOT NULL DEFAULT '0', `age` int(11) DEFAULT NULL, `name` varchar(225) not null ) engine=innodb default charset=utf8; insert into person values(1,1,'zhangshan'),(2,2,'lisi'),(3,3,'lst'),(4,4,'jon'),(5,5,'test');
臨時表支持主鍵、索引指定。在連接非臨時表查詢可以利用指定主鍵或索引來提升性能。存儲過程語句及游標和臨時表綜合實例:
drop procedure if exists sp_test_tt; -- 判斷存儲過程函數是否存在如果是刪除 delimiter ;; create procedure sp_test_tt() begin create temporary table if not exists tmp -- 如果表已存在,則使用關鍵詞 if not exists 可以防止發生錯誤 ( id varchar(255) , name varchar(50), age varchar(500) ) engine = memory; begin declare ids int; -- 接受查詢變數 declare names varchar(225); -- 接受查詢變數 declare done int default false; -- 跳出標識 declare ages int(11); -- 接受查詢變數 declare cur cursor for select id from person; -- 聲明游標 declare continue handler for not FOUND set done = true; -- 迴圈結束設置跳出標識 open cur; -- 開始游標 LOOP_LABLE:loop -- 迴圈 FETCH cur INTO ids; select name into names from person where id=ids; select age into ages from person where id=ids; insert into tmp(id,name,age) value(ids,names,ages); if done THEN -- 判斷是否繼續迴圈如果done等於true離開迴圈 LEAVE LOOP_LABLE; -- 離開迴圈 END IF; end LOOP; -- 結束迴圈 CLOSE cur; -- 關閉游標 select * from tmp; -- 查詢臨時表 end; truncate TABLE tmp; -- 使用 truncate TABLE 的方式來提升性能 end; ;; delimiter ;;
執行存儲過程:
call sp_test_tt();