Sử dụng joinWith
. Để biết thêm xem
Ví dụ:đối với mã trường hợp của bạn như vậy:
Books::find()
->joinWith(['reviews' => function ($q) {
$q->select(['COUNT(*) as cnt']);
}])
->orderBy(['cnt' => 'DESC'])
->all();
CHỈNH SỬA:Tôi tìm thấy giải pháp tốt hơn.
Books::find()
->joinWith(['reviews'])
->select(['*', 'COUNT(reviews.*) as cnt'])
->groupBy('RELATION_FIELD(Example: reviews.book_id)')
->orderBy(['cnt' => 'DESC'])
->all();