Laravel - 使用table2列更新table1列

时间:2018-05-20 05:27:31

标签: laravel-5 eloquent

我想在迁移脚本中使用这种查询。

update table1, table2 set table1.column = table2.another_column where table1.id=table2.foreign_id

如何以laravel / eloquent的方式做到这一点?

1 个答案:

答案 0 :(得分:0)

试试这个:

DB::table('table1')
    ->join('table2', 'table1.id', 'table2.foreign_id')
    ->update(['table1.column' => DB::raw('table2.another_column')]);