i am using mysql..and i am using php forms ..i need to display the date when the table was last updated for accuracy ..so any idea on this
Thanks,
Pradeep
Thanks,
Pradeep
SELECT editDate FROM table where id=x
SELECT a.is, max(editDate) as latestEdit FROM table wherex group by a.id, a.editDate
Comment