i have a database called emplyees structured like this:
id name entrydate totalhours
1 test 11/11/2015 8
2 test2 11/11/2015 7
3 test 11/12/2015 8
4 test2 11/12/2015 9
And i want to turn it in something like this
id name 11/11/2015 11/12/2015
1 test 8 8
2 test2 7 9
I tried several methods but no result how can i do this? Thanks in advance!