标签: laravel laravel-4 eloquent query-builder
如何从多个连接表之一中选择所有列?
DB::table('table as t')->select('t*');
asterix似乎不适用于Laravel?谢谢!
答案 0 :(得分:8)
是的,它有效,但你错了。试试这个(注意.):
.
DB::table('table as t')->select('t.*');
答案 1 :(得分:0)
尝试DB::table('table')->get();
DB::table('table')->get();