Wrox Home  
Search P2P Archive for: Go

  Return to Index  

sql_language thread: Here is the CORRECT ANSWER


Message #1 by "Yakov Shlafman" <yakov_shlafman@p...> on Mon, 4 Jun 2001 15:16:11 -0400
Here is the CORRECT ANSWER:
select  LogID
       ,IPAddress
       ,Creation_Timestamp
       ,Location
from TmpLog  A
where A.Creation_Timestamp 
 (select max(Creation_Timestamp)
   from TmpLog B
   where A.IPAddress = B.IPAddress  )

Regards
Yakov



  Return to Index