
07-27-2001, 07:03 AM
|
|
Iron-Fisted Programmer
Retired Moderator * Guru *
|
|
Join Date: Jul 2001
Location: Fayetteville Arkansas USA
Posts: 18,127
|
|
Re: How do i get the date of the last table update ?
|
I think you will need to add a timestamp field to the table. Everytime you add a row, you place the current time and date in this field. Then, when you need to find the last one you can Order By Desc this field and if your SQL supports it use the TOP 1 in the Select clause. If it is related to the Primary key in another table then it is just a join.
|
|