I have single table name as job_post.Now int this table city stored with the multiple city id and skill stored with the multiple skill id as show in below table.
I want to search using multiple skill id like 1,2 and multiple city id in this table.
I have tried query like this :
select * from job_post where FIND_IN_SET(city, '1,3') or FIND_IN_SET(skill, '1,3')
So, I got one result which have city 1 but I want both row instead of it if it matches single id from skill or city column.
So what query should I have to write?