laravel raw join查询

时间:2017-10-04 14:03:46

标签: php laravel laravel-query-builder

我有一个函数在条件和连接的地方接受raw:

query('data',['fieldA','fieldB'], 'fieldA > 10 AND fieldB < 20', 'LEFT JOIN users ON data.user_id = users.id');

function query($table, $keys = [], $where = '', $joins = '') {
   $query = DB::table($table)->select($keys);
   if(!empty($where)) {
      $query=$query->whereRaw($where);
   }
   if(!empty($joins)) {
      $query=$query->?????????????
   }
   return $query->get();
}

如何将raw连接与查询构建器一起使用,我可以将whereRaw用于where条件?

4 个答案:

答案 0 :(得分:1)

如果您只是在所有内容上使用原始表达式,请不要打扰查询构建器。

选项1:使用PDO

PDO是Laravel使用的底层驱动程序。要获取PDO对象,请运行:

$pdo = DB::connection()->getPdo();

选项2:运行原始查询

你可以通过Laravel运行整个选择而不需要&#34;构建&#34;查询:

DB::select("SELECT * FROM table WHERE ..");

这甚至可以在您需要时进行参数绑定。

https://laravel.com/docs/5.5/database

答案 1 :(得分:0)

在这里,我已经提出了一些想法,你如何使你的方法有点泛泛。对where子句和查询的其他部分做同样的事情。

query('data',['fieldA','fieldB'], 'fieldA > 10 AND fieldB < 20', 'LEFT', 'users', 'data.user_id','users.id');

function query($table, $keys = [], $where = '', $join_type = 'LEFT', $join_table='', $join_field1='', $join_field2='') {
   $query = DB::table($table)->select($keys);
   if(!empty($where)) {
      $query=$query->whereRaw($where);
   }
   if(!empty($joins)&&!empty($join_type)&&$join_type=='LEFT') {
      $query=$query->leftJoin($join_table, $join_field1, '=', $join_field2)
   }
   if(!empty($joins)&&!empty($join_type)&&$join_type=='INNER') {
      $query=$query->join($join_table, $join_field1, '=', $join_field2)
   }
   ///and so on
   return $query->get();
}
//But you can make this method more generic, I just put some idea so that you can make this method more flexible
//I did not take a look at your other part of the method though.

注意:我没有为多个连接添加两个表连接,但是您可以使您的方法更通用,更灵活。我只想尝试一些想法。如果我错了,请纠正我。
参考: Laravel - Joins

答案 2 :(得分:0)

闻起来不香但是有效

    \DB::table('data')->join('user', function($join){
            $join->on(\DB::raw('( `data`.`user_id` = `user.id` or (`data`.`user_id` is null and `data`.`other_field` is null)) and 1 '),'=',\DB::raw('1'));      
        })

答案 3 :(得分:-1)

DB::table('data')->join('users','data.user_id','users.id')->where(~~~)