从子查询进行查询

Making query from subquery

我正在尝试将以下 sql 查询传递给 Doctrine:

SELECT id, name, count(*) FROM (SELECT r.id, r.name, f.timestamp FROM `food_log` as f inner join recipe as r on f.recipe_id = r.id WHERE f.user_id = 6 and timestamp > "2016-09-01" and recipe_id is not null group by f.timestamp, r.id) a GROUP BY a.id ORDER BY count(*) DESC

它应该 return 我的食谱,其中包含特定用户使用所选时间戳中的单个食谱的次数。

现在我正在尝试使用 Doctrine 1.2 和 Symfony 1.4 来做这件事,但是我不知道如何从子查询中进行查询,我正在尝试做这样的事情

        $subQuery = Doctrine_Query::create()
        ->select('r.id, r.name, f.timestamp')
        ->from('FoodLog f')
        ->innerJoin('f.Recipe r')
        ->where('f.user_id = ?', $userId)
        ->andWhere('timestamp > ?', "2016-09-01")
        ->andWhere('f.recipe_id is not null')
        ->andWhere('r.is_premium = ?', $premium)
        ->groupBy('f.timestamp, r.id')
        ->getSqlQuery();

    $query = Doctrine_Query::create()
    ->select('id, name, count(*)')
    ->from($subQuery)
    ->groupBy('id')
    ->orderBy('count(*) DESC');

    return $query->fetchArray();

有人知道我错在哪里吗? 非常感谢您的回复!

基本上,您不能在此版本的 Doctrine 中进行嵌套查询。我建议通过 doctrine 连接器使用原始 SQL 查询:

$sql = 'SELECT id, name, count(*) FROM (SELECT r.id, r.name, f.timestamp FROM `food_log` as f inner join recipe as r on f.recipe_id = r.id WHERE f.user_id = 6 and timestamp > "2016-09-01" and recipe_id is not null group by f.timestamp, r.id) a GROUP BY a.id ORDER BY count(*) 
DESC';
$conn = Doctrine_Manager::getInstance()->getCurrentConnection();
$result = $conn->execute($sql);

foreach($result as $data){
    // do something
}

由于您没有给物体补水,因此您应该会发现这很管用。