Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > MySQL
|
MySQL General discussion about the MySQL database.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the MySQL section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 20th, 2005, 02:13 PM
Authorized User
 
Join Date: Mar 2004
Posts: 61
Thanks: 0
Thanked 0 Times in 0 Posts
Default Show ALL records from one table

Hello!

I get a problem which I remember having now and then, only I cannot remember how I dealt with it previously.

Code:
select name, max(post_time) as maxtime
from `members`, `posts`
where id = author_id
group by name
Like that, it shows the time of the latest post for each member - who has ever posted something; but it ignores the members who don't have posts to choose the youngest from, and skips them.

Is there a way to make it show also the names of the members who doesn't have a post at all - then on column `maxtime` it could show NULL, for example.

Thanks!
Janis

 
Old September 1st, 2005, 06:08 PM
Authorized User
 
Join Date: Jul 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to merediths
Default

LEFT JOIN or RIGHT JOIN ... google it. I'd be more helpfull, but without more of the table structure I can't give an example

Regards,
Meredith Shaebanyan






Similar Threads
Thread Thread Starter Forum Replies Last Post
show records with only values dstein4d Access VBA 1 September 2nd, 2008 04:59 PM
Show number of records Vision G Access 2 June 3rd, 2006 03:01 AM
Doesn't show all records from a table janise Access 10 July 27th, 2005 04:19 AM
Repeat region, I cannot change the 'show records' karib Dreamweaver (all versions) 3 May 6th, 2004 03:27 PM
Want to show Records on ASP Page randomly pkdev Classic ASP Databases 3 July 28th, 2003 03:20 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.