I have a table that i want to filter out duplicated data when using SELECT operation, the table itself contain data like this:
|=======|
| SPEED |
|=======|
| 100 |
| 100 |
| 90 |
| 80 |
| 80 |
| 100 |
| 80 |
|=======|
What i want to is something like this, notice that the order still intact:
|=======|
| SPEED |
|=======|
| 100 |
| 90 |
| 80 |
| 100 |
| 80 |
|=======|
DISTINCT or GROUP BY didn't work since it's discard all duplicated data
Why i need this kind of data, is because i want to draw chart using this data, by reducing the node (removing duplicated data in some sequences) the chart would less crowded and faster to render