MySQL 存储过程传参数实现where id in(1,2,3,...)示例
MySQL 存储过程传参数实现where id in(1,2,3,...)示例
发布时间:2016-12-29 来源:查字典编辑
摘要:正常写法:复制代码代码如下:select*fromtable_nametwheret.field1in(1,2,3,4,...);当在写存储...

正常写法:

复制代码 代码如下:

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;

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新mysql数据库学习
热门mysql数据库学习
编程开发子分类