MySQL 存储过程传参数实现where id in(1,2,3,...)示例
程序员文章站
2024-03-31 14:33:46
正常写法: 复制代码 代码如下: select * from table_name t where t.field1 in (1,2,3,4,...); 当在写存储过程i...
正常写法:
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;
复制代码 代码如下:
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;
下一篇: Java中的this指针使用方法分享