I have an \"Observation\" table in SQL Server 2008. This table has a locationId column for a bunch of geographic locations, a few columns for observation details and a colum
select * from observation where date=(select max(date) from observation)
or
select top 1 * from observation order by date desc