• <i id='P2y0F'><tr id='P2y0F'><dt id='P2y0F'><q id='P2y0F'><span id='P2y0F'><b id='P2y0F'><form id='P2y0F'><ins id='P2y0F'></ins><ul id='P2y0F'></ul><sub id='P2y0F'></sub></form><legend id='P2y0F'></legend><bdo id='P2y0F'><pre id='P2y0F'><center id='P2y0F'></center></pre></bdo></b><th id='P2y0F'></th></span></q></dt></tr></i><div id='P2y0F'><tfoot id='P2y0F'></tfoot><dl id='P2y0F'><fieldset id='P2y0F'></fieldset></dl></div>

    <small id='P2y0F'></small><noframes id='P2y0F'>

    • <bdo id='P2y0F'></bdo><ul id='P2y0F'></ul>
    1. <tfoot id='P2y0F'></tfoot>

        <legend id='P2y0F'><style id='P2y0F'><dir id='P2y0F'><q id='P2y0F'></q></dir></style></legend>

        Laravel Eloquent Query 使用 WHERE 和 OR AND OR?

        时间:2023-09-24

          <small id='4tgJ1'></small><noframes id='4tgJ1'>

            <tbody id='4tgJ1'></tbody>
        • <i id='4tgJ1'><tr id='4tgJ1'><dt id='4tgJ1'><q id='4tgJ1'><span id='4tgJ1'><b id='4tgJ1'><form id='4tgJ1'><ins id='4tgJ1'></ins><ul id='4tgJ1'></ul><sub id='4tgJ1'></sub></form><legend id='4tgJ1'></legend><bdo id='4tgJ1'><pre id='4tgJ1'><center id='4tgJ1'></center></pre></bdo></b><th id='4tgJ1'></th></span></q></dt></tr></i><div id='4tgJ1'><tfoot id='4tgJ1'></tfoot><dl id='4tgJ1'><fieldset id='4tgJ1'></fieldset></dl></div>

            <tfoot id='4tgJ1'></tfoot>
                <bdo id='4tgJ1'></bdo><ul id='4tgJ1'></ul>

                  <legend id='4tgJ1'><style id='4tgJ1'><dir id='4tgJ1'><q id='4tgJ1'></q></dir></style></legend>

                  本文介绍了Laravel Eloquent Query 使用 WHERE 和 OR AND OR?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我怎么说WHERE (a = 1 OR b =1 ) AND (c = 1 OR d = 1)

                  对于更复杂的查询,我应该使用原始 SQL 吗?

                  For more complicated queries am I supposed to use raw SQL?

                  推荐答案

                  利用 逻辑分组(Laravel 7.x/4.2).对于您的示例,它会是这样的:

                  Make use of Logical Grouping (Laravel 7.x/4.2). For your example, it'd be something like this:

                  Model::where(function ($query) {
                      $query->where('a', '=', 1)
                            ->orWhere('b', '=', 1);
                  })->where(function ($query) {
                      $query->where('c', '=', 1)
                            ->orWhere('d', '=', 1);
                  });
                  

                  这篇关于Laravel Eloquent Query 使用 WHERE 和 OR AND OR?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如果我没有/无法使用 DI 注入服务,我如何直接从 下一篇:与 Laravel 的友谊系统:多对多关系

                  相关文章

                  最新文章

                  <small id='f6H4m'></small><noframes id='f6H4m'>

                    <i id='f6H4m'><tr id='f6H4m'><dt id='f6H4m'><q id='f6H4m'><span id='f6H4m'><b id='f6H4m'><form id='f6H4m'><ins id='f6H4m'></ins><ul id='f6H4m'></ul><sub id='f6H4m'></sub></form><legend id='f6H4m'></legend><bdo id='f6H4m'><pre id='f6H4m'><center id='f6H4m'></center></pre></bdo></b><th id='f6H4m'></th></span></q></dt></tr></i><div id='f6H4m'><tfoot id='f6H4m'></tfoot><dl id='f6H4m'><fieldset id='f6H4m'></fieldset></dl></div>
                  1. <tfoot id='f6H4m'></tfoot>
                  2. <legend id='f6H4m'><style id='f6H4m'><dir id='f6H4m'><q id='f6H4m'></q></dir></style></legend>

                      <bdo id='f6H4m'></bdo><ul id='f6H4m'></ul>