我需要显示登录用户使用“统计/关系查询”发布的每个请求的最大费率和最小建议费率沿着建议计数。我正在使用以下关系获取计数或最小费率
public function relations()
{
return array('serviceproposals'=>
array(self::HAS_MANY,'Serviceproposal','ServiceRequestID'),
'user' => array(self::BELONGS_TO, 'Buyer', 'user_id'),
'postCount'=>array(self::STAT,'serviceproposal', 'ServiceRequestID','select'=>'MAX(proposal_rate)'),
);
}
使用的数据库包含:-
User[user_id,name,password],
Provider[user_id,providercompany,providerdetails],
Buyer[user_id,contactinfo],
ServiceRequest[ServiceRequestID,Buyer.user_id,details,date],
ServiceProposal[ServiceProposalId,ServiceRequestID,Provider.user_id,services,propsal_rate]
提前感谢。
1条答案
按热度按时间bz4sfanl1#
这是因为我的错误,我没有得到计数,最大和最小率。有需要提供2个单独的关系,使3个值越来越好。