Laravel动态查询使用查询生成器

时间:2016-12-25 16:09:42

标签: php mysql laravel-5 laravel-eloquent

我是Laravel的新人。我想用laravel查询构建器进行查询动态。通常我可以在php中进行动态查询

$where = array(
  'hello' => 'world'
);

function get($where = null){
   if($where == "")  $where = "";
  //Function which converts where clause into queries
  wheretoqueries($where);  //converts where clause
  $sql = "SELECT * FROM $tbl $where";
  return $sql; 
}
echo get($where);

如果where子句为null,则查询将为

SELECT * FROM $tbl

如果where子句不是null,则查询将是

SELECT * FROM $tbl WHERE hello = "world"

如果密钥和值存在,Laravel orm适用于where子句

A::where($where)->get();

如果where,则以下方法将无效

2 个答案:

答案 0 :(得分:3)

您可以将where个查询链接为:

$query = Model::query();

if (!empty($value)) {
   $query->where('column', $value);
}

$query->get();

OR

您可以使用when方法:

Model::when($value, function ($query) use ($value) {
        return $query->where('column', $value);
    })
    ->get();

答案 1 :(得分:1)

试试这个。如果$ where变量包含某些内容,则查询将执行,否则它将从A模型中检索所有数据。

 function get($where = null){
     if($where != null){
        A::where('field_name', '=', $where)->first(); 
     }else{
        A::all();
     }
  }

注意:如果您的查询返回多个值,则必须在查询生成器末尾使用get()方法而不是first(); 参考:https://laravel.com/docs/5.3/queries#where-clauses