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
link|improve this question

78% accept rate
2  
whats wrong with "... ORDER BY ip" ? – davin Jan 11 '11 at 20:45
feedback

2 Answers

up vote 1 down vote accepted

In SQL, all the rows you get back have the same structure of columns. So you can't produce that outline view directly from SQL. But if you simply sort the rows by IP and DATE (ORDER BY IP, Date), you'll get the four rows you want in more-or-less the order you want. You then need to present them as an outline in a report generator or on a web page using code.

The only sorting issue you have is that to get exactly the order you specified, you'll need to disassemble the IP addresses into four integer values and ORDER BY those four integers.

link|improve this answer
feedback
SELECT * FROM `visitors` ORDER BY ABS('ip')

This will sort the ip address properly. Then depending what language you are using you can display the other data. I could provide examples in PHP

link|improve this answer
Are you sure ABS does that? – Larry Lustig Jan 11 '11 at 21:01
regular sort order will sort like this: 1, 102, 2, 245, 546, 6 ETC. order by abs will order it by the absolute value. I cannot say for sure if abs will sort the ip address with the periods. In that case you could just strip the periods from the string. – Michael Stevens Jan 12 '11 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.