从一个表中获取具有特定id的colunm的总和,并从codeigniter中具有该id的另一个表中获取详细信息

时间:2017-10-20 04:35:24

标签: php jquery codeigniter

我想从一个表中获取具有特定id的列的总和,并从具有mysql查询和codeigniter的id的另一个表中获取详细信息。 我使用过这段代码:

function total_commision($ids)
{
    $values=array();
    for($o=0;$o<count($ids);$o++) {
        $this->db->select('SUM(commision) AS total_commision', FALSE);
        $this->db->where('hierarchy_users_id',$ids[$o]);
        $query = $this->db->get('commision');
        $value=$query->result()[0];
        array_push($values, $value);
    }
    return $values;
  }

我想使用codeigniter查询从数据库中的id获取另一个表中每个成员的详细信息。

1 个答案:

答案 0 :(得分:0)

您可以尝试以下

@RunWith(SpringRunner.class)    
@SpringBootTest (classes = YourRestController.class )    
@ComponentScan({"your package goes here"})    
@AutoConfigureMockMvc    
@ActiveProfiles("development")    
public class Foo{
}