I m 寻求一种手法,以书写SQ。
缩略语 并且i必须查阅该表中的以下记录:,lname
,accountid
,最新日期以greatest(max(生育_date),max(update_date)
(注:
我预计,我需要利用分析职能。
我有这些情况:
(id,fname,lname,accountid,creation_date,update_date)
(1, a , a , 2 , 07/01/2010 10:59:43 , 07/01/2010 10:59:43 )
(2, a , a , 2 , 07/01/2010 10:59:43 , 07/01/2010 10:59:43 )
(3, a , a , 2 , 07/01/2010 10:59:43 , 07/01/2010 10:59:43 )
我要选择最后一点:这一记录(3,a,a, 2 , 07/01/2010 10:59:43 , 07/01/2010 10:59:43 )
(id,fname,lname,accountid,creation_date,update_date)
(3, b , a , 2 , 07/01/2009 10:59:43 , 07/01/2010 10:59:43 )
(4, b , a , 2 , 07/01/2011 10:59:43 ,null)
(5, b , a , 2 , 07/01/2009 10:59:43 , 07/01/2009 10:59:43 )
我想选择两个栏上的最新一个栏目(编号:日期,日期:日期)(4,b, a, 2 , 07/01/201110:59:43,null)
(id,fname,lname,accountid,creation_date,update_date)
(6, c , g , 4 , 07/01/2010 10:59:43 ,null)
(7, c , g , 4 , 07/01/2011 10:59:43 ,null)
(8, c , g , 4 , 07/01/2009 10:59:43 ,null)
我想选择两个栏上的最新一栏(制作——日期,日期——日期),即(7,c, g, 4 , 07/01/2011 10:59:43,null)
(id,fname,lname,accountid,creation_date,update_date)
(9, k , t , 2 , 07/01/2009 10:59:43 , 07/01/2012 10:59:43 )
(10, k , t , 2 , 07/01/2011 10:59:43 ,null)
(11, k , t , 2 , 07/01/2009 10:59:43 , 07/01/2009 10:59:43 )
I want to choose the most recent one on both columns (creation_date,update_date) which is (9, k , t , 2 , 07/01/2009 10:59:43 , 07/01/2012 10:59:43 )