I have this EMPLOYEE table of employees list
+-----+---------------+-------------+ | ID |EMPLOYEE_ID | SKILLS | +-----+---------------+-------------+ |
You can try this over join
DB::table('POSTED_JOB')->leftJoin('EMPLOYEE', function($join){ $join->on(DB::raw("find_in_set(POSTED_JOB.JOB_SKILLSmEMPLOYEE.SKILLS)")); });