所以我在zend写了一个select语句,如下所示:
$select = $db->select()
->from("db.notifications")
->where("notifications_user_id = ?")
->group(array('notifications_source_id','notifications_type','id'));
我希望会发生的是它会返回按类型和来源ID分组的通知,假设它们对于每条记录都是相同的。
当我将查询打印到字符串时,我得到:
SELECT "solo_notifications".* FROM "db"."notifications" WHERE (notifications_user_id = ?) GROUP BY "notifications_source_id", "notifications_type", "id" )
但是,回报根本没有分组。
有什么想法吗?