kid_drew Posted September 11, 2006 Share Posted September 11, 2006 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? Quote Link to comment Share on other sites More sharing options...
shoz Posted September 11, 2006 Share Posted September 11, 2006 The images.username field is overriding the user.username field. A quick fix would be the following[code]SELECTu.username AS uname, u.*, i.*FROMusers AS uLEFT JOINimagesONu.username = i.usernameAND 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] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.