I have a problem with getting a last timestamp for each nr in my db.
+--------+---------------------+------------------------------+
| nr | type | ts |
+--------+---------------------+------------------------------+
| | | |
| 1002 | RSC | 2017-12-05 07:53:42 |
| 1002 | RSC | 2017-12-05 07:52:42 |
| 1004 | RSC | 2017-12-05 07:54:42 |
| 1004 | RSC | 2017-12-05 07:51:42 |
| 1004 | RSC | 2017-12-05 07:51:42 |
+--------+---------------------+------------------------------+
Result after select:
+-------+---------------------+-------------------------+
| 1002 | RSC | 2017-12-05 07:53:42 |
+-------+---------------------+-------------------------+
| 1004 | RSC | 2017-12-05 07:54:42 |
+-------+---------------------+-------------------------+
Thank you for help.