I store the values from some analog registers (0 and 1) to the database and I would like to do the following:
I have the following table in the database for storing the sensors values:
ID | TIMESTAMP | ALIAS | STATUS
1 | 2012-09-12 12:31:01 | AR1 | 0
2 | 2012-09-12 12:31:02 | AR1 | 0
3 | 2012-09-12 12:31:03 | AR1 | 0
4 | 2012-09-12 12:31:04 | AR1 | 0
5 | 2012-09-12 12:31:05 | AR1 | 0
6 | 2012-09-12 12:31:06 | AR1 | 0
7 | 2012-09-12 12:31:07 | AR1 | 1
8 | 2012-09-12 12:31:08 | AR1 | 1
9 | 2012-09-12 12:31:09 | AR1 | 1
10 | 2012-09-12 12:31:10 | AR1 | 0
11 | 2012-09-12 12:31:11 | AR1 | 0
12 | 2012-09-12 12:31:12 | AR1 | 0
13 | 2012-09-12 12:31:13 | AR1 | 0
14 | 2012-09-12 12:31:14 | AR1 | 0
15 | 2012-09-12 12:31:15 | AR1 | 1
16 | 2012-09-12 12:31:16 | AR1 | 0
17 | 2012-09-12 12:31:17 | AR1 | 0
18 | 2012-09-12 12:31:01 | AR1 | 0
...
Using an SQL query, I would like to be able to return when the register had changed status in order to create a graph without using unnecessary points. Keep in mind that the table consists of 1 million and more values and by doing this I will reduce the size of the returned data and the graph will be faster.
I am not sure if MySQL provides a functionality as described but at first I thought that GROUP BY might have been a good solution but unfortunately it is not.
Any suggestions?
Desired output:
ID | TIMESTAMP | ALIAS | STATUS
1 | 2012-09-12 12:31:01 | AR1 | 0
6 | 2012-09-12 12:31:06 | AR1 | 0
7 | 2012-09-12 12:31:07 | AR1 | 1
9 | 2012-09-12 12:31:09 | AR1 | 1
10 | 2012-09-12 12:31:10 | AR1 | 0
14 | 2012-09-12 12:31:14 | AR1 | 0
15 | 2012-09-12 12:31:15 | AR1 | 1
16 | 2012-09-12 12:31:16 | AR1 | 0
...
You can observe that I am removing intermediate lines between sequential values as I only need the first and last occurrence of a value and the new value.
Any suggestions?