I have a sql view. Example is below. The problem is that I want to use all of the fields but I do not want to group by every field. How can I circumvent that? I only need to group on fieldA, but not the others...actually grouping with the others messes up the data I want to see. I'm using SQL Server 2008. Thanks!
select
fieldA,
fieldB,
fieldC,
fieldD,
....
from my_table as a join other_table b on a.id=b.id
group by fieldA, fieldB, fieldC, fieldD
GROUP BYwhen using an aggregate function likeSUM,COUNT,MIN,MAX, etc. Do you meanORDER BY? – Ken Keenan Jul 20 '12 at 19:00ORDER BYnote above. – shawnt00 Jul 20 '12 at 23:15