このクエリをphpmyadminで直接実行すると、完全に結果が返されます。しかし、このクエリをphpスクリプトで実行すると、NULLが返されます
これは私のdbクラスです:
class Product extends Places_Db_Table_Row_Observable {
protected $_name = 'product';
PUBLIC function getMaxSubcatProduct()
{
$query = $this->getAdapter()->query("select max( c ) AS maxcount,id from ( select COUNT(*) as c
,product_sub_category_id as id from product group by product_sub_category_id ) as max ");
$res = $query->fetchAll();
return $res;
}
}