English 中文(简体)
加入 zend 框架查询
原标题:use joins in zend framework query

我想在 zend 中使用加入。 下面是我的查询

 $select = $this->_db->select()
 ->from(array( evaluationcriteria  =>  procurement_tbltenderevaluationcriteria ),
 array( ScoringCriteriaID , ScoringCriteriaWeight ))
 ->join(array( scoringcriteria  =>  procurement_tbltenderscoringcriteria ),
                                scoringcriteria.    TenderId=evaluationcriteria.TenderId )
 ->join(array( tenderapplications  =>  procurement_tbltenderapplications , tendersupplier  =>  tblsupplier ),
                                tenderapplications. TenderInvitationContractorID=tendersupplier.UserID );

标书供应商表中有用户ID。

找不到列 : 1054 未知列标书供应商。 条款中的用户ID

问题回答

I think its not the right way to include more than one tale in same array of a join. Try code like this..

->from(array( evaluationcriteria  =>  procurement_tbltenderevaluationcriteria ),
       array( ScoringCriteriaID , ScoringCriteriaWeight ))
->join(array( scoringcriteria  =>  procurement_tbltenderscoringcriteria ),
       scoringcriteria.    TenderId=evaluationcriteria.TenderId )
       scoringcriteria.    TenderId=evaluationcriteria.TenderId )
->join(array( tenderapplications  =>  procurement_tbltenderapplications ),
       tenderapplications.TenderInvitationContractorID=tblsupplier.UserID );

我不确定你是否也计划加入 走私贩桌上的价值观。

情况并不像你写的那样好。

我敢打赌,小卖桶是一张桌子,应该放在一个阵列中

这个代码没有测试!

   $select = $this->_db->select()
   ->from(array( evaluationcriteria  =>  procurement_tbltenderevaluationcriteria ),
    array( ScoringCriteriaID , ScoringCriteriaWeight ))
   ->join(array( scoringcriteria  =>  procurement_tbltenderscoringcriteria ),
                            scoringcriteria.    TenderId=evaluationcriteria.TenderId )
    ->join(array( tenderapplications  =>   procurement_tbltenderapplications ), array( tendersupplier  =>  tblsupplier ))
    ->where( tenderapplications. TenderInvitationContractorID=tendersupplier.UserID );

看起来你正试图加入两张桌子 —— & gt; join, 我认为你做不到 。

从 Zend_ Db_ select () 加入代码

/**
     * Adds a JOIN table and columns to the query.
     *
     * The $name and $cols parameters follow the same logic
     * as described in the from() method.
     *
     * @param  array|string|Zend_Db_Expr $name The table name.
     * @param  string $cond Join on this condition.
     * @param  array|string $cols The columns to select from the joined table.
     * @param  string $schema The database name to specify, if any.
     * @return Zend_Db_Select This Zend_Db_Select object.
     */
    public function join($name, $cond, $cols = self::SQL_WILDCARD, $schema = null)
    {
        return $this->joinInner($name, $cond, $cols, $schema);
    }

这里是从 () 到 () 的批注块

/**
     * Adds a FROM table and optional columns to the query.
     *
     * The first parameter $name can be a simple string, in which case the
     * correlation name is generated automatically.  If you want to specify
     * the correlation name, the first parameter must be an associative
     * array in which the key is the correlation name, and the value is
     * the physical table name.  For example, array( alias  =>  table ).
     * The correlation name is prepended to all columns fetched for this
     * table.
     *
     * The second parameter can be a single string or Zend_Db_Expr object,
     * or else an array of strings or Zend_Db_Expr objects.
     *
     * The first parameter can be null or an empty string, in which case
     * no correlation name is generated or prepended to the columns named
     * in the second parameter.
     *
     * @param  array|string|Zend_Db_Expr $name The table name or an associative array
     *                                         relating correlation name to table name.
     * @param  array|string|Zend_Db_Expr $cols The columns to select from this table.
     * @param  string $schema The schema name to specify, if any.
     * @return Zend_Db_Select This Zend_Db_Select object.
     */

不如试试这个吧

 $select = $this->_db->select()
 //FROM table procurement_tbltenderevaluationcriteria AS evaluationcriteria, SELECT FROM
 //COLUMNS ScoringCriteriaID and ScoringCriteriaWeight
 ->from(array( evaluationcriteria  =>  procurement_tbltenderevaluationcriteria ),
 array( ScoringCriteriaID , ScoringCriteriaWeight ))
 //JOIN TABLE procurement_tbltenderscoringcriteria AS scoringcriteria WHERE 
 //TenderId FROM TABLE scoringcriteria == TenderId FROM TABLE evaluationcriteria
 ->join(array( scoringcriteria  =>  procurement_tbltenderscoringcriteria ),
                  scoringcriteria.TenderId=evaluationcriteria.TenderId )
 //JOIN TABLE procurement_tbltenderapplications AS tenderapplications
 ->join(array( tenderapplications  =>  procurement_tbltenderapplications ))
 //JOIN TABLE tblsupplier AS tendersupplier WHERE TenderInvitationContractorID FROM TABLE 
 // tenderapplications == UserID FROM TABLE tendersupplier
 ->join(array( tendersupplier  =>  tblsupplier ),
    tenderapplications.TenderInvitationContractorID=tendersupplier.UserID );

"http://framework.zend.com/manual/en/zend.db.table.html#zed.db.table.advanced.usage.sage" rel="no follow" 可能还需要修改您选择的定义,允许加入 :

//this will lock the tables to prevent data corruption
$this->_db->select(Zend_Db_Table::SELECT_WITHOUT_FROM_PART)->setIntegrityCheck(FALSE);

我希望我能正确读懂你的用意, 这应该能让你更接近,如果不是一路走近的话。 (一个提示,用简短的别名... )





相关问题
Zend 邮件问题,涉及外国char子+ com子

泽斯德邮局在名称被定为具有外国性质(如“保”)和 com(”)的物品时,就放弃了一种例外(因为邮局(邮局)退回假)。 重新提出以下守则。

PHP Framework: Ebay Like Site

I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, ...

Link to a specific step in onepage checkout

Is it possible to redirect the browser to nth step in the onepage checkout? If so, how would one go about doing it? I m working on a payment module and have a sort of "cancel" action that i would ...

Tagging with Zend Framework

I m trying to create the same solutions as below, but using a simple MySQL query (instead of the static version used below where the words/tags are implemented in the code). The name of the MySQL ...

dynamicaly adding textboxes to zend_form

I hope that this is a quick question to answer. I am developing a form using Zend_Form, I have a number of Zend_Dojo_Form_Element_Textboxs to add to this form dynamically. These are added from rows ...

热门标签