I have a table called visitors with the following values:
id ip date time
1 98.112.43.45 2011-01-11 14:00:10 5
2 98.112.43.45 2011-01-11 11:49:00 1040
3 192.150.3.7 2011-01-11 12:06:38 2
4 98.112.43.45 2011-01-11 12:06:23 188
Is there a way to group them by IP when using select and get something like:
IP 98.112.43.45
- 5 second visit on 2011-01-11 14:00:10
- 1040 second visit on 2011-01-11 11:49:00
- 188 second visit on 2011-01-11 12:06:23
IP 192.150.3.7
- 2 second visit on 2011-01-11 12:06:38