Re: time elapsed



Captain Paralytic wrote:

In fact the format 2008-02-28 10:33:51 is not how MySQL stores
timestamps. That is just one format that it can use to display it.

Possibly DATEDIFF() or TIMEDIFF()

wonderful, thanks to both of you.

I've written a query to get the mean and the std deviation:

SELECT
SEC_TO_TIME(
AVG(TIMEDIFF(main.time_stamp, request.time_stamp))
)
AS average_time,
SEC_TO_TIME(
STDDEV_POP(TIMEDIFF(main.time_stamp, request.time_stamp))
)
AS std_dev
FROM main, request
WHERE main.ID = request.ID

Does anybody know of anything else in php or MySQL that is easily available to toss in (for data interpretation)?
.



Relevant Pages

  • Re: DB Result Wizard Error
    ... Also noted that one folder, which contains no information can't be deleted, ... >> For instance Equipment Serial Number, Equipment Model Number, Cost Accounting ... >> to display the new equipment information. ... >> is in the table was added to the query. ...
    (microsoft.public.frontpage.programming)
  • RE: Just starting to design a form (or is it a query?)
    ... A Form is used to display the data and allow ... A query can be the record source for a form. ... that match an ID in the Assessment table. ... Now, assuming this is the case, what you need is a form with a sub form. ...
    (microsoft.public.access.gettingstarted)
  • Re: database lookup
    ... the query on the subsequent page, and display the "drill down" data. ... The thing with PHP and MySQL is that you need the user to do an action ... I tried to state that I have the database designed and implemented but I ...
    (alt.php)
  • Re: how to show two rows in an unbound continuous form
    ... Thanks a lot for your prompt response.Actually i thought of using crosstab ... I have created a crosstab query on the table i gave you earlier.The first ... have bound the form's controlsource also,of course). ... clue how to display the second row to show another leave period(01-05-2009 to ...
    (microsoft.public.access.formscoding)
  • Re: DB Result Wizard Error
    ... It is the standard message: ... For instance Equipment Serial Number, Equipment Model Number, Cost Accounting ... The actual change made was to the equipment inventory query, ... to display the new equipment information. ...
    (microsoft.public.frontpage.programming)