आप whereNotIn
. का उपयोग कर सकते हैं बंद होने के साथ:
$result = DB::table('exams')->whereNotIn('id', function($q){
$q->select('examId')->from('testresults');
})->get();
आप whereNotIn
. का उपयोग कर सकते हैं बंद होने के साथ:
$result = DB::table('exams')->whereNotIn('id', function($q){
$q->select('examId')->from('testresults');
})->get();