MySQL 存儲進程傳參數完成where id in(1,2,3,...)示例。本站提示廣大學習愛好者:(MySQL 存儲進程傳參數完成where id in(1,2,3,...)示例)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL 存儲進程傳參數完成where id in(1,2,3,...)示例正文
正常寫法:
select * from table_name t where t.field1 in (1,2,3,4,...);
當在寫存儲進程in外面的列表用個傳入參數代入的時刻,就須要用到以下方法:
重要用到find_in_set函數
select * from table_name t where find_in_set(t.field1,'1,2,3,4');
固然還可以比擬笨實的辦法,就是組裝字符串,然後履行:
DROP PROCEDURE IF EXISTS photography.Proc_Test;
CREATE PROCEDURE photography.`Proc_Test`(param1 varchar(1000))
BEGIN
set @id = param1;
set @sel = 'select * from access_record t where t.ID in (';
set @sel_2 = ')';
set @sentence = concat(@sel,@id,@sel_2); -- 銜接字符串生成要履行的SQL語句
prepare stmt from @sentence; -- 預編釋一下。 “stmt”預編釋變量的稱號,
execute stmt; -- 履行SQL語句
deallocate prepare stmt; -- 釋放資本
END;