>I have a table called CONTENT. Columns called ID (primarykey), DOCUMENT
>(varchar(50)), DESCRIPTION (text).  People submit files to our intranet and
>we collect info. about them in this table.  If people have made changes to
>the doc. they just resubmit it to the intranet. So there can be many records
>with the same DOCUMENT value.  What I need help with is when I do a select
>statement to view the docs submitted.  I only want to select the last record
>entered with the same name in the DOCUMENT column to my webpage.  Can you
>help me with this?
>

Sir, if you have a date field, end your SELECT with
    ORDER BY date_field DESC LIMIT 1;

Bob Hall

Know thyself? Absurd direction!
Bubbles bear no introspection.     -Khushhal Khan Khatak

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to