首页  >  文章  >  数据库  >  MySql in的参数变量_MySQL

MySql in的参数变量_MySQL

WBOY
WBOY原创
2016-06-01 13:39:211951浏览

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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn