MySql in的參數變量
Mysql :
Sql代碼
select appid from mem_apps where appid in (?)
如果?=25,3 那麼此語句的結果只有一條,形如下面的語句:
select appid from mem_apps where appid in ('25,3')
www.2cto.com
要得到多條記錄 ,可以采用下面的寫法:
select appid from mem_apps where INSTR(CONCAT(',',?,','),CONCAT(',',appid,','))>0
類似於
select appid from mem_apps where appid in ('25','3')