我一直在摸不着头脑,并做了一些谷歌搜索,但无法弄清楚为什么这个查询返回错误的SUM。
$points = $wpdb->get_results("Select SUM(points) as points from $sc WHERE division_id = '$divid' and participant_id = '$partid' and status = '1'");
如果我进入数据库并运行以下内容,它将完全符合我的需要。但是如果我把它放在Wordpress Query Get_Results格式中,它会返回错误的信息。
Select SUM(points) as points from $sc WHERE division_id = '$divid' and participant_id = '$partid' and status = '1'
我缺少什么,Wordpress是否以不同的方式使用SUM?