Re: Update TimeStamp

2001-04-02 Thread Steve Werby
"Jason Frisvold" <[EMAIL PROTECTED]> wrote: > Is there any way to query a mySQL database for the last time it was updated? > I need this ability to trigger a "restart" in some other applications that > create config files and such for MRTG... Create a field with type DATETIME and update it when a

Re: Update TimeStamp

2001-04-02 Thread Gerald Clark
select _timestamp from mytable order by _timestamp desc limit 1; Jason Frisvold wrote: > > Is there any way to query a mySQL database for the last time it was updated? > I need this ability to trigger a "restart" in some other applications that > create config files and such for MRTG... > > T