tags:

views:

42

answers:

2

Is it possible to group by more than one column e.g

GROUP BY fV.tier_id AND 'f.form_template_id'

in a mySQL statement?

+2  A: 
GROUP BY col1, col2, col3
Joe Philllips
+1  A: 
group by fV.tier_id, f.form_template_id
Trevor