$sql="select count(*) as member_count from user_mst where delete_flg = false and school_no='{$schoolNo}' and original_source='{$originalSource}'";
$db=&CompassDBManager::getInstance();
$tmpList=$db->executeQuery($sql);
if(!empty($tmpList)){
$memberCount=$tmpList[0]['member_count'];
}
//查询该校能力分汇总
$abilityPoint=0;
$sql="select sum(ability_point) as ability_point from user_mst where delete_flg = false and school_no='{$schoolNo}' and original_source='{$originalSource}'";