Quick Access Query

  • I need to be able to display a single result which has been posted the most recent.

    So, say I have ten entries w/ a time stamp on each, I need to display only the most recent one....

  • this should get you the latest value based on time-stamp

    SELECT top 1 *

    FROM YourTable

    ORDER BY timestamp DESC;

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply