[snip]
I am looking to try and pull the last modified date out and display it.
So 
lets say I have 1000 records.  I want to only display the date of the
last 
modified time, I dont care about the id or the name or anything.  How do
I 
query for that?
[/snip]

If you have a lst modified date column you would ...

SELECT MAX(LastModifiedDate) FROM yourtable

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to