skip duplicate data from database in laravel

I just want to skip duplicate data from database,My foreign key is repeating so I just want to skip duplicate entry and get latest only
My controller is like that

$old=DB::table('tabl-1')
    ->leftJoin('tbl-2','tabl1.id','=','tabl2.tabl1_id')
    ->whereDate('created_at','<' ,Carbon::today())
    ->select('tbl1.name as name','tbl1.class as class','tabl2.table1_id')
    ->distinct('tabl2.table1_id')
    ->get()
    ->toArray();

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

DB::table('first')->leftJoin('second', 'first.id', '=', 'second.first_id')
->whereDate('first.created_at', '<', Carbon::today())
->select('first.name as name', 'first.class as class', 'second.first_id')
->groupBy('second.first_id')->get()->toArray();

Try groupBy, since distinct() has no argument in there


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x