Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

How to get the maximum date value in a group or NULL if present?

Total Hit ( 2854)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Click here to copy the following block
create table #Account_Tbl (Account int, Owner int, Fee decimal(5, 2), [Account-Date] datetime)
insert #Account_Tbl values(11017 ,101 ,677.38 , 'Dec 31 1995')
insert #Account_Tbl values(11017 ,101 ,744.00 , 'May 30 1996 ')
insert #Account_Tbl values(11017 ,102 ,744.00 , 'Dec 31 1996 ')
insert #Account_Tbl values(11017 ,102 ,725.00 , 'Mar 31 1997 ')
insert #Account_Tbl values(11017 ,102 ,755.00 , 'Mar 31 1998 ')
insert #Account_Tbl values(11017 ,102 ,763.00 , null)


/*
Account Owner Fee Account-Date

11017 101 744.00 May 30 1996

11017 102 763.00 (null)
*/

select a1.account, a1.owner, a1.fee, convert(varchar, a1.[Account-Date], 107)
from #Account_Tbl a1
where isnull(a1.[Account-Date], '9999-12-31 00:00') =
       (select max(isnull(a2.[Account-Date], '9999-12-31 00:00')) from #Account_Tbl a2
           where a1.account = a2.account and a1.owner = a2.owner)


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.