Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7795399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:03:45+00:00 2026-06-01T23:03:45+00:00

Okay I have a table that looks as following: id | status(bool) | devicename(text)

  • 0

Okay I have a table that looks as following:

id | status(bool) | devicename(text) | datetime (timestamp) | kwh(float)
1  |      0       |            Light | 2012-04-17 00:40:12  | 0.6

is a typical example of the data. Now I want to work out how long the device has been on (status) for. I would like to use the TIMEDIFF(expr1,expr2) between each set of status {1, 0} as I believe it’s perfect for this kind of task.

I tried to create a query where I can get the pairs of 1->0 and work out their corresponding time differences. There is the added problem whereby if the last value is on, I would like to have it work out the time difference between the ON time point and the current time. I know there is an easier way to do this than manually using php to analyse the table results.

Many Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:03:45+00:00Added an answer on June 1, 2026 at 11:03 pm

    Well, if you really want it in MySQL:

    SET @total = 0, @lasttime = 0, @laststatus = 0;
    SELECT IF(`status`=0,
              @total := IF(@lasttime=0,
                           0,
                           @total+TIMEDIFF(`datetime`,@lasttime)
              ),
              @lasttime := `datetime`
           ), (@laststatus := `status`) FROM `table`;
    SET @total = @total + IF(@laststatus=1,TIMEDIFF(NOW(),@lasttime),0);
    SELECT @total AS `result`
    

    Honestly it’d just be easier to select all the rows and let PHP process it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, I'm stumped here. I have a control that is comprised of a table.
I'm using SQL Server 2008. I have a database table that looks like this
QUESTION: Is it okay to have shortcut identifiers in a table so that I
I have a nested hash table that looks like this: my %myhash = (
Okay, here's the situation: We have a table of about 50 columns (created by
Okay I have a large CRUD app that uses tabs with Forms embedded in
Okay so I have the following Code which appends a string to another in
I have a hash table that I want to store to disk. The list
Okay, say i have a table with the field code. The query select code
Okay, my dilemma is this. I have an admin page that I use to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.