简体   繁体   中英

trying to create a 'join' statement using Zend DB Table - zend framework 2

I have a model that needs to execute a join query on 2 tables... lets call them friend_list and user_profile.

I am having a heck of a time trying to put together the zend style code to produce the proper query I need to accomplish this... below is the desired query:

SELECT friend_list.friend_id, user_profile.id, user_profile.username
FROM `friend_list`
INNER JOIN `user_profile`
ON friend_list.friend_id = user_profile.id
where user_id = 1

Here is my model_friends

<?php
//model created to add user to database, sendmail etc...
require_once 'Zend/Db/Table/Abstract.php';

class Model_Friends extends Zend_Db_Table_Abstract
{
protected $_name = "friend_list";

public function fetchFriendList($userID)
{

    $accountsTable = array('up' => 'user_profile');
    $select = $this->select()
                   ->from($this->_name)
                   ->join($accountsTable, 'up.id = friend_List.friend_id', array())
                   ->where("up.id = ?", $userID);

    $result = $this->fetchAll($select);


    if ($result !== null){
        echo $select;
        return $result;
    } else {
        echo "no records found";
    }   
  }
}

the above model produces the follow SQL statement which is NOT what I want...

SELECT `friend_list`.* 
FROM `friend_list` 
INNER JOIN `user_profile` 
AS `up` 
ON up.id =     friend_List.friend_id 
WHERE (up.id = '1') 

adding the table structures as requested:

DROP TABLE IF EXISTS `buzz`.`friend_list`;
CREATE TABLE  `buzz`.`friend_list` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`friend_id` int(11) NOT NULL,
`approved_timestamp` date NOT NULL,
`status` varchar(15) DEFAULT 'pending',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

DROP TABLE IF EXISTS `buzz`.`user_profile`;
CREATE TABLE  `buzz`.`user_profile` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`mob` varchar(50) NOT NULL DEFAULT 'no info',
`dob` varchar(50) NOT NULL DEFAULT '',
`yob` varchar(50) NOT NULL DEFAULT '',
`language` varchar(75) NOT NULL DEFAULT 'English',
`gender` varchar(25) NOT NULL DEFAULT 'no info',
`about` varchar(1000) NOT NULL DEFAULT 'no info',
`country` varchar(45) NOT NULL DEFAULT 'no info',
`username` varchar(45) NOT NULL,
PRIMARY KEY (`id`,`username`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

Try changing your Zend_Db_Select object to the following:

$select = $this->select()
    ->join($accountsTable, 'friend_list.friend_id = user_profile.id', array())
    ->where('user_profile.id = ?', $userID)
    ->reset('columns')
    ->columns(array('friend_list.friend_id', 'user_profile.id', 'user_profile.username'));

This is not an answer to the question but since i cant comment yet i will post this here. I found the following website helpful with the join examples.

github.com

the end result of my model_friends script is as follows:

<?php
//model created to add user to database, sendmail etc...
require_once 'Zend/Db/Table/Abstract.php';

class Model_Friends extends Zend_Db_Table_Abstract
{
protected $_name = "friend_list";

public function fetchFriendList($userID)
{       
    $select = $this->select()
                   ->from($this)
                   ->setIntegrityCheck(false)
                   ->join(array('u'=>'user_profile'), 'friend_list.friend_id =u.id', array())
                   ->columns(array('u.id', 'u.username'))
                   ->where("friend_list.user_id = ?", $userID);     

    $result = $this->fetchAll($select);                    
    if ($result !== null){
        echo $select;
        return $result;
    } else {
        echo "no records found";
    }   
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM