Laravel使用来支持表和列的别名
AS。尝试
$users = DB::table('really_long_table_name AS t')->select('t.id AS uid')->get();
让我们看看它的强大
tinker工具
$ PHP工匠修补匠[1]>模式:: create('really_long_table_name',function($ table){$ table-> increments('id');});// 空值[2]> DB :: table('really_long_table_name')-> insert(['id'=> null]);//正确[3]> DB :: table('really_long_table_name AS t')-> select('t.id AS uid')-> get();//数组(// 0 => object(stdClass)(//'uid'=>'1'//)//)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)