I have a table like this:
**id - userId - session - time**<br>
1 ---- 1 -------- 1 ----- 20:12:10<br>
2 ---- 1 -------- 1 ----- 20:45:11<br>
3 ---- 1 -------- 1 ----- 20:55:12<br>
4 ---- 2 -------- 1 ----- 10:45:11<br>
5 ---- 2 -------- 1 ----- 10:55:11<br>
6 ---- 1 -------- 2 ----- 05:58:16<br>
7 ---- 1 -------- 2 ----- 05:45:11<br>
8 ---- 1 -------- 2 ----- 05:45:11<br>
...
How do I select only the first row of user with id 1 (only column session and time) in mySQL, like this:
**session - time**<br>
1 ----- 20:12:10<br>
2 ----- 05:58:16<br><br>