Hi
Im looking for a way to format my query's a little better.
I have a table that has a server, item and time row.
Im using the query: select * from times order by server, time.
Basically, I have multiple servers all with different items and times .
I'm trying to find a way I can output the query so it would show each server as a header, then the time and item listed below it.
Kinda like:
SERVER1
00:01 ITEM1
02:02 ITEM2
03:03 ITEM3
SERVER2
00:04 ITEM4
02:05 ITEM5
03:06 ITEM6
Is there any way to do this without hardcoding the header? Someone point me in the right direction =)
thanks!
-r