我需要customer_account
的完整表格和公司佣金的一个专栏佣金
表ewallet_fund_transfer
中的主键为id
,即company_commission
中的引用键。我希望在此参考ID前面进行佣金。
function account_summary($userId, $acId)
{
$this->db->select('customer_account.*,company_commission.commission');
$this->db->from('customer_account');
$this->db->join('company_commission', 'customer_account.customerID=company_comession.customer_id','inner');
$this->db-> where('customerID', $userId);
$this->db-> where('curr_ac_id', $acId);
$this->db-> where('ewallet_fund_transfer.id=company_comession.reference_id');
$query = $this->db->get();
return $query->result();
}