gpt4 book ai didi

php - 使用 Propel 计数和分组

转载 作者:可可西里 更新时间:2023-11-01 12:48:36 24 4
gpt4 key购买 nike

在 Doctrine 中我可以做:

public function getCount() 
{
$q = $this->createQuery('q')
->select('*')
->addSelect('count(q.name) as count')
->groupBy('q.name')
->orderBy('count DESC');

return $q->execute();
}

我怎样才能在 Symfony 1.4 的 Propel 中做同样的事情?

最佳答案

该死!比那更容易!

如果您需要对给定查询的结果行进行计数,则需要使用 count() 终止方法,基本上:

MyTableQuery::create()->count();

阅读以下文档部分了解更多信息:http://www.propelorm.org/documentation/03-basic-crud.html#query_termination_methods

如果您想在查询中添加 countnb 额外的列,代表 SQL 聚合函数,如 COUNT SUM,那么你应该使用withColumn()方法:

$query = MyTableQuery::create()
->withColumn('COUNT(*)', 'Count')
->select(array('Name', 'Count'))
->groupByName()
->orderByCount()
;

$results = $query->find();

关于php - 使用 Propel 计数和分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9584669/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com