如何将这样的查询转换为口才:
select table1.column, table2.column, table3.column from table1, table2, table3
答案 0 :(得分:0)
您可以使用
DB::query()
->from('table1, table2, table3')
->select('table1.column', 'table2.column', 'table3.column')
->get()
答案 1 :(得分:0)
您可以使用fromRaw()
:
DB::query()
->select('table1.column', 'table2.column', 'table3.column')
->fromRaw('table1, table2, table3')
->get();