getting query empty with this query. butt data is there in database
select * from applies_jobs where appid like '%RAD-0001%' and job_id IN ('41,48,49') order by id asc
if i use only in or like query it work fine.
getting query empty with this query. butt data is there in database
select * from applies_jobs where appid like '%RAD-0001%' and job_id IN ('41,48,49') order by id asc
if i use only in or like query it work fine.
try this:
select * from applies_jobs where appid like '%RAD-0001%' and job_id IN ('41','48','49') order by id asc
in the IN use separated values