Finding the date

  • Does anyone knows how I can find the first time a record input into the system?

    I have the following:

    Select * from status

    where datefirstentered > datecompleted

    but this is not guaranteed to pull the first time the record was entered into the system Anyone has any other ideas?

    Thanks

  • SELECT TOP 1 DateFirstEntered FROM Status

    WHERE DateFirstEntered > DateCompleted

    ORDER BY DateFirstEntered ???



    Good Hunting!

    AJ Ahrens


    webmaster@kritter.net

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

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