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

      <bdo id='6J2Td'></bdo><ul id='6J2Td'></ul>

  • <small id='6J2Td'></small><noframes id='6J2Td'>

    <legend id='6J2Td'><style id='6J2Td'><dir id='6J2Td'><q id='6J2Td'></q></dir></style></legend>

        如何用学说随机选择

        How to select randomly with doctrine(如何用学说随机选择)
        <tfoot id='AzvXC'></tfoot>
      1. <small id='AzvXC'></small><noframes id='AzvXC'>

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

                    <tbody id='AzvXC'></tbody>

                  <legend id='AzvXC'><style id='AzvXC'><dir id='AzvXC'><q id='AzvXC'></q></dir></style></legend>
                  本文介绍了如何用学说随机选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  这是我查询数据库中一些单词的方法

                  Here is how I query my database for some words

                  $query = $qb->select('w')
                      ->from('DbEntitiesEntityWord', 'w')
                      ->where('w.indictionary = 0 AND w.frequency > 3')
                      ->orderBy('w.frequency', 'DESC')
                      ->getQuery()
                      ->setMaxResults(100);
                  

                  我正在使用 mysql,我想获得符合条件的随机行,我将在查询中使用 rand() 排序.

                  I'm using mysql and I'd like to get random rows that match the criteria, I would use order by rand() in my query.

                  我发现了这个类似的问题,这基本上表明,因为 ORDER BY RAND 不受支持在学说中,您可以改为随机化主键.但是,在我的情况下无法做到这一点,因为我有一个搜索条件和一个 where 子句,因此并非每个主键都满足该条件.

                  I found this similar question which basically suggests since ORDER BY RAND is not supported in doctrine, you can randomize the primary key instead. However, this can't be done in my case because I have a search criteria and a where clause so that not every primary key will satisfy that condition.

                  我还发现了一个 代码片段,建议您使用 OFFSET 来随机化行像这样:

                  I also found a code snippet that suggests you use the OFFSET to randomize the rows like this:

                  $userCount = Doctrine::getTable('User')
                       ->createQuery()
                       ->select('count(*)')
                       ->fetchOne(array(), Doctrine::HYDRATE_NONE); 
                  $user = Doctrine::getTable('User')
                       ->createQuery()
                       ->limit(1)
                       ->offset(rand(0, $userCount[0] - 1))
                       ->fetchOne();
                  

                  我有点困惑,这是否会帮助我解决在我的情况下不支持随机排序的问题.我无法在 setMaxResult 之后添加偏移量.

                  I'm a little confused as to whether this will help me work around the lack of support for order by random in my case or not. I was not able to add offset after setMaxResult.

                  知道如何做到这一点吗?

                  Any idea how this can be accomplished?

                  推荐答案

                  Doctrine 团队 不愿意实现此功能.

                  The Doctrine team is not willing to implement this feature.

                  有多种解决方案可以解决您的问题,每种方法都有自己的缺点:

                  There are several solutions to your problem, each having its own drawbacks:

                  • 添加自定义数字函数:请参阅此DQL RAND() 函数
                    (如果您有很多匹配的行,可能会很慢)
                  • 使用本机查询
                    (我个人尽量避免使用这个解决方案,我发现它很难维护)
                  • 首先发出原始 SQL 查询以随机获取一些 ID,然后通过将 ID 数组作为参数传递,使用 DQL WHERE x.id IN(?) 加载关联的对象.
                    此解决方案涉及两个单独的查询,但可能比第一个解决方案提供更好的性能(存在除 ORDER BY RAND() 之外的其他原始 SQL 技术,我不会在此详细说明),你会在这个网站上找到一些很好的资源).
                  • Add a custom numeric function: see this DQL RAND() function
                    (might be slow if you have lots of matching rows)
                  • Use a native query
                    (I personally try to avoid this solution, which I found hard to maintain)
                  • Issue a raw SQL query first to get some IDs randomly, then use the DQL WHERE x.id IN(?) to load the associated objects, by passing the array of IDs as a parameter.
                    This solution involves two separate queries, but might give better performance than the first solution (other raw SQL techniques than ORDER BY RAND() exist, I won't detail them here, you'll find some good resources on this website).

                  这篇关于如何用学说随机选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                  <i id='B4obT'><tr id='B4obT'><dt id='B4obT'><q id='B4obT'><span id='B4obT'><b id='B4obT'><form id='B4obT'><ins id='B4obT'></ins><ul id='B4obT'></ul><sub id='B4obT'></sub></form><legend id='B4obT'></legend><bdo id='B4obT'><pre id='B4obT'><center id='B4obT'></center></pre></bdo></b><th id='B4obT'></th></span></q></dt></tr></i><div id='B4obT'><tfoot id='B4obT'></tfoot><dl id='B4obT'><fieldset id='B4obT'></fieldset></dl></div>

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

                    • <tfoot id='B4obT'></tfoot>

                        <bdo id='B4obT'></bdo><ul id='B4obT'></ul>
                        <legend id='B4obT'><style id='B4obT'><dir id='B4obT'><q id='B4obT'></q></dir></style></legend>

                          <tbody id='B4obT'></tbody>