bitscn.com
mysql in的参数变量 mysql :sql代码 select appid from mem_apps where appid in (?) 如果?=25,3 那么此语句的结果只有一条,形如下面的语句: select appid from mem_apps where appid in ('25,3') 要得到多条记录 ,可以采用下面的写法: select appid from mem_apps where instr(concat(',',?,','),concat(',',appid,','))>0 类似于 select appid from mem_apps where appid in ('25','3') bitscn.com
