Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select max sum amount
Message
From
06/09/2011 11:39:01
 
 
To
06/09/2011 11:24:46
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
01522791
Message ID:
01522802
Views:
30
>>>Hi
>>>
>>>I have
>>>
>>>
>>>
>>>select sum(amount) as [total],
>>>		member_ref,
>>>		description 
>>>from payments 
>>>where description like '%Test%' 
>>>group by member_ref,description 
>>>
>>>
>>>
>>>how can I select out only the maximum sum amount for each member_ref .
>>>
>>>Thanks
>>>
>>>Nick
>>
>>The max of the sum - translate to sql server
>>
>>
>>	select max(total), ;
>>			member_ref ;
>>		from ( ;
>>			select	sum(amount) as Total, ;
>>					member_ref, ;
>>					description ;
>>			from payments ;
>>				where description like '%Test%' ;
>>				group by member_ref, description ;
>>			) X ;
>>		group by 2
>>
>
>
>Thanks Gregory
>
>works like a charm
>
>Nick


Thought so
Gregory
Previous
Reply
Map
View

Click here to load this message in the networking platform