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

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

    1. 使用 CDBCriteria 进行连接查询

      Doing Join query using CDBCriteria(使用 CDBCriteria 进行连接查询)
        <bdo id='oOizU'></bdo><ul id='oOizU'></ul>

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

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

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

              <legend id='oOizU'><style id='oOizU'><dir id='oOizU'><q id='oOizU'></q></dir></style></legend>
                本文介绍了使用 CDBCriteria 进行连接查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在尝试在 Yii 框架中使用 CDBCriteria 进行 Join 查询.问题是连接查询成功运行,但不显示其他表中的列.

                I am trying to do a Join query using CDBCriteria in Yii framework. The issue is the join query works successfully but it does not display the columns from other tables.

                我的做法如下

                $criteria = new CDbCriteria;
                
                $criteria->order = 't.id desc';
                
                $criteria->select = '*';
                
                $criteria->join = ' INNER JOIN table2 INNER JOIN table3 INNER JOIN table4';
                

                当我运行它时,我只能看到显示的邮件 table1 列.其他列未显示.

                When i run this, I can see only the mail table1 columns displayed. Other columns are not shown.

                在我的模型类中,我有关系

                In my model class, I have the relation has

                public function relations()
                {
                  // NOTE: you may need to adjust the relation name and the related
                  // class name for the relations automatically generated below.
                    return array(
                      'user' => array(self::BELONGS_TO, 'DmPhoneUser', 'user_id'),
                      'command' => array(self::BELONGS_TO, 'DmOtaCommand', 'command_id'),
                      'partner' => array(self::BELONGS_TO, 'DmPartner', 'partner_id'),
                    );
                }
                

                ********************************************************

                ********************************************************

                public function actionGetHistory($start, $per_page)
                {
                    $partner_id = '10';
                    $criteria = new CDbCriteria;
                    $criteria->order = 't.history_id desc';
                    $criteria->select = 't.*, table2.*';
                    $criteria->join = ' INNER JOIN table2 ON t.command_id = table2.command_id';
                    $result = Table_1_class::model()->with('command')->findAll();
                    $history_data = CJSON::encode($result);
                    echo $history_data;
                }
                

                这里command_id在table1和table2中是通用的.

                here command_id is common in table1 and table2.

                这就是我使用标准代码的方式.

                This is how I am using the criteria code.

                推荐答案

                正如我所说,Yii 的 Active Record 实现将只使用在表本身或您通过 with,而不是您在结果集中返回的任意列.

                As I said, Yii's Active Record implementation will only use columns which are defined in the table itself or the tables you are linking to through with, not arbitrary columns you return in the resultset.

                解决方案1:定义与table2的关系,将该关系添加到with,并去掉join.然后您可能需要将每个返回的对象转换为数组 - CJSON::encode 将无法很好地处理具有关系的模型.

                Solution 1: Define a relation to table2, add that relation to with, and get rid of join. Then you'll probably need to convert each returned object to an array - CJSON::encode will not handle a model with relations well.

                解决方案 2:使用 Yii::app()->db->createCommand("SQL query")->queryAll(); 而不是 Active Record.这将产生一个数组数组,CJSON::encode 将没有问题.

                Solution 2: Use Yii::app()->db->createCommand("SQL query")->queryAll(); instead of Active Record. This will produce an array of arrays, which CJSON::encode will have no problem with.

                这篇关于使用 CDBCriteria 进行连接查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                相关文档推荐

                Appending GET parameters to URL from lt;formgt; action(将 GET 参数附加到来自 lt;formgt; 的 URL行动)
                Forcing quot;Save Asquot; dialog via jQuery GET(强制“另存为通过 jQuery GET 对话框)
                PHP - get certain word from string(PHP - 从字符串中获取某个单词)
                How to debug a get request in php using curl(如何使用 curl 在 php 中调试 get 请求)
                get a # from a url in php(从 php 中的 url 获取 #)
                PHP - include() file not working when variables are put in url?(PHP - 将变量放入 url 时,include() 文件不起作用?)
              1. <small id='uWn4a'></small><noframes id='uWn4a'>

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

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

                        <tbody id='uWn4a'></tbody>
                      <legend id='uWn4a'><style id='uWn4a'><dir id='uWn4a'><q id='uWn4a'></q></dir></style></legend>
                      • <tfoot id='uWn4a'></tfoot>