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

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

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

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

      1. 如何在 Doctrine2 (Symfony2) 中按案例排序

        时间:2023-08-19
        <tfoot id='JZVIR'></tfoot>

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

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

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

                1. 本文介绍了如何在 Doctrine2 (Symfony2) 中按案例排序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在 Symfony 2.3 中使用 Doctrine 来运行这个查询.但似乎 Doctrine 不理解 CASE 语句.任何人都可以帮忙吗?提前谢谢你!

                  SELECT max(id) id, name发件人卡片WHERE 名称如 '%John%'按名称分组ORDER BY CASE 当名字像 'John %' THEN 0当名字像 'John%' THEN 1当名字像 '% John%' THEN 2其他 3完,名字

                  解决方案

                  如果你正在使用 createQueryBuilder 那么你可以使用 like

                  <前>$query->addSelect("(CASE WHEN name like 'John %' THEN 0当名字像 'John%' THEN 1当名字像 '% John%' THEN 2ELSE 3 END) 作为隐藏命令");$query->orderBy('ORD', 'DESC');

                  请注意,您必须具有隐藏".

                  您也可以使用学说本机查询.

                  I want to run this query by using Doctrine in Symfony 2.3. But it seems like Doctrine does not understand CASE statement. Can anyone help? Thank you in advance!

                  SELECT max(id) id, name
                  FROM cards
                  WHERE name like '%John%'
                  GROUP BY name
                  ORDER BY CASE WHEN name like 'John %' THEN 0
                             WHEN name like 'John%' THEN 1
                             WHEN name like '% John%' THEN 2
                             ELSE 3
                        END, name
                  

                  解决方案

                  If you are using createQueryBuilder then you can use like

                  $query->addSelect("(CASE WHEN name like 'John %' THEN 0
                             WHEN name like 'John%' THEN 1
                             WHEN name like '% John%' THEN 2
                             ELSE 3 END) AS HIDDEN ORD ");
                  $query->orderBy('ORD', 'DESC');
                  

                  Note that you must have "HIDDEN".

                  You can do with doctrine native query as well.

                  这篇关于如何在 Doctrine2 (Symfony2) 中按案例排序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Doctrine entitymanager clear 没有完全清除 下一篇:在 Symfony 2 中为集合的每个项目指定不同的验证组?

                  相关文章

                  <legend id='7FNDo'><style id='7FNDo'><dir id='7FNDo'><q id='7FNDo'></q></dir></style></legend>

                    <bdo id='7FNDo'></bdo><ul id='7FNDo'></ul>

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

                    <small id='7FNDo'></small><noframes id='7FNDo'>