Search code examples
mysqlzend-frameworksearchzend-db

ZEND search with MySQL Match and Union


I have to confess that I cannot work out how to complete this. I can get the query working in MySql, and I can get simple table-or-view queries in Zend Framework, but this is beyond me!

Here's the query I'm trying to run:

SELECT * from (
SELECT 
'Tab' as 'table_name', TabId as id, `TabTitle` as title,
(MATCH(`TabTitle`,`TabSubTitle`) AGAINST (@target)) as relevance
from Tab
UNION
SELECT 
'Tab2' as 'table_name', 
Tab2Id as id, `Tab2Title` as title,
(MATCH(`Tab2Title`,`Tab2Desc`) AGAINST (@target)) as relevance
from Tab2
)
as sitewide WHERE relevance > 0 order by relevance DESC;

I'd like any pointers you can offer as to how to shoehorn this into the MVC framework of Zend!

Edited to add:

This is the current Model Code I'm using, which gives an error "Argument 1 passed to Zend_Paginator_Adapter_DbTableSelect::__construct() must be an instance of Zend_Db_Select, string given,"

class Application_Model_Search extends Zend_Db_Table
{
protected $_name = ‘Search’;
protected $_primary = 'SearchId';

function getSearchResults($page, $searchTerm) 
{

    $query = "
SELECT * from (
 SELECT 
 'Tab' as 'table_name', TabId as id, `TabTitle` as title,
 (MATCH(`TabTitle`,`TabSubTitle`) AGAINST (@target)) as relevance
 from Tab
 UNION
 SELECT 
 'Tab2' as 'table_name', 
 Tab2Id as id, `Tab2Title` as title,
 (MATCH(`Tab2Title`,`Tab2Desc`) AGAINST (@target)) as relevance
 from Tab2
)
as sitewide WHERE relevance > 0 order by relevance DESC;        
    ";

    echo ($query);      

    $paginator = new Zend_Paginator(new Zend_Paginator_Adapter_DbTableSelect($query));
    $paginator->setItemCountPerPage(15); //
    $paginator->setCurrentPageNumber($page); 
    return $paginator; 


}


}

Solution

  •     $config = array (
            'dbname' => 'test',
            'password' => 'passwd',
            'username' => 'user'
        );
    
        $database = new Zend_Db_Adapter_Mysqli ($config);
    
        $query_1 = new Zend_Db_Select ($database);
        $query_1->from ('Tab', array (
            'Tab AS table_name',
            'TabId AS id',
            'TabTitle` as title',
            new Zend_Db_Expr ('(MATCH(`TabTitle`,`TabSubTitle`) AGAINST (@target)) as relevance')
        ));
    
        $query_2 = new Zend_Db_Select ($database);
        $query_2->from ('Tab2', array (
            'Tab2 AS table_name',
            'Tab2Id AS id',
            'Tab2Title` as title',
            new Zend_Db_Expr ('(MATCH(`Tab2Title`,`TabDesc`) AGAINST (@target)) as relevance')
        ));
    
        $query = $database->select ()
            ->union (array (
            $query_1,
            $query_2
        ));
    
        echo $database->select ()->from ($query)->where ('relevance>0')
            ->order ('relevance DESC');