php-general | 2001032
Date: 03/19/01
- Next message: Luke Welling: "Re: [PHP] PHP & MYSQL BOOKS"
- Previous message: Jeff: "RE: [PHP] site root variable (for Generic Unix and Windows)"
- Next in thread: Jeff Armstrong: "RE: [PHP] Query - Grouping Results"
- Reply: Jeff Armstrong: "RE: [PHP] Query - Grouping Results"
- Maybe reply: Jordan Elver: "Re: [PHP] Query - Grouping Results"
- Reply: Mario Henrique Cruz Torres: "[PHP] Re: [PHP-DB] Query - Grouping Results"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi,
I've got a table like:
id user_id ip time
1 2 127.0.0.1 20010316105018
Etc, etc.
I do a join on the this table and the users table to get the coresponding
username to user_id like this:
SELECT users.name AS name, user_logins.ip AS ip,
UNIX_TIMESTAMP(user_logins.time) AS time FROM users, user_logins WHERE
user_logins.user_id = users.id ORDER BY time ASC
How can I display the results grouped by username?
So, I want to be able to display:
Logins for John
Thursday 10th
Friday 12th
Monday 23rd
Logins for Bob
Monday 1st
Tuesday 2nd
Saturday 31st
Thanks for any help,
Jord
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Luke Welling: "Re: [PHP] PHP & MYSQL BOOKS"
- Previous message: Jeff: "RE: [PHP] site root variable (for Generic Unix and Windows)"
- Next in thread: Jeff Armstrong: "RE: [PHP] Query - Grouping Results"
- Reply: Jeff Armstrong: "RE: [PHP] Query - Grouping Results"
- Maybe reply: Jordan Elver: "Re: [PHP] Query - Grouping Results"
- Reply: Mario Henrique Cruz Torres: "[PHP] Re: [PHP-DB] Query - Grouping Results"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

