Jump to content

Mysql LEFT JOIN help, please


kid_drew

Recommended Posts

Hey guys,
I'm having a problem with a left join statement.  When I query the database from the phpmyadmin console, it works fine, but I'm having problems with the mysql_query call in php.  The query is:

"select * from users left join images on users.username = images.username AND images.list_order = 0"

This is supposed to grab all users whether they have images or not, but if they do, the images fields should be populated instead of NULL.  if the user has an image listed in the "images" table, everything works fine.  The problem is that if the user does not have an image listed in table "images", then the username field returns NULL.  Again, the query looks like it works perfectly if I do it from the phpmyadmin console, but not in PHP.

Any ideas?
Link to comment
https://forums.phpfreaks.com/topic/20391-mysql-left-join-help-please/
Share on other sites

The images.username field is overriding the user.username field. A quick fix would be the following
[code]
SELECT
u.username AS uname, u.*, i.*
FROM
users AS u
LEFT JOIN
images
ON
u.username = i.username
AND i.list_order = 0
[/code]
You'd now access the username in the column uname rather than username. You can also list all the columns you'd like from each table (users.column1, images.column1 ...) instead of using "*" to avoid the problem.

[url=http://www.php.net/mysql_fetch_assoc]mysql_fetch_assoc[/url]
[url=http://www.php.net/mysql_fetch_array]mysql_fetch_array[/url]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.