合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
>[danger] 指定查询的字段并设置别名 ~~~ DB::table('users')->select('username as name', 'id')->get(); ~~~ >[danger] 给已经构建好的查询添加更多字段 ~~~ $base = DB::table('users') ->select('username as name', 'id'); $data = $base->addSelect('password')->get(); ~~~ >[danger] 内部原生表达式 ~~~ $data = DB::table('users') ->select(DB::raw('concat("id", "username")')) ->groupBy('password') ->get(); ~~~ ~~~ $data = DB::table('users') ->selectRaw('count(*) as count') ->groupBy('password') ->havingRaw('count > 1') ->get(); ~~~