I have a table called industry table
id | name
1 IT
2 Banking
3 Telecom
I have another table called jobs table
id | job_title | industry
45 AsstManager 2,3
46 soft.dev 1,3
Now how do I search all the jobs in banking and telecom industry? I am using laravel5.4 query builder. I am really clueless, how can I approach this keeping in mind the performance also. Any help would be appreciated. Thanks