close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

join, left or right... :S

Thread began 6/11/2015 8:01 am by Jamie | Last modified 6/11/2015 2:01 pm by Ray Borduin | 1455 views | 2 replies |

Jamie

join, left or right... :S

Hi Ray

Am trying to get a join in a recordset so that I am able to shwo the contents of the main table whilst also being able to show 1 column from 2 other tables.

The RS I have (and it isnt working) is

<?php
$FeaturedProductPanel = new WA_MySQLi_RS("FeaturedProductPanel",$DBConnection,1);
$FeaturedProductPanel->setQuery("SELECT products.*, productmanufacturers.*, productcategories.* FROM products RIGHT OUTER JOIN productmanufacturers ON products.ProductManufacturerID = productmanufacturers.ManufacturerName RIGHT OUTER JOIN productcategories ON products.ProductCategoryID = productcategories.CategoryName WHERE products.ProductLive = 1 ORDER BY Rand()");
$FeaturedProductPanel->execute();
?>



What it is supposed to be doing is showing the product from the products table and then the CategoryName from the productcategories table and ManufacturerName from the productmanufacturers table that is relevant to the product itself...

Not sure where or what I have done wrong.

Cheers

Jamie

Sign in to reply to this post

Ray BorduinWebAssist

I think you would want to use LEFT or INNER joins and not RIGHT joins, since the products is the main table you want to always return results from.

Then I think you may be joining on the wrong columns... for example you have: products.ProductManufacturerID = productmanufacturers.ManufacturerName

shouldn't it be: products.ProductManufacturerID = productmanufacturers.ManufacturerID

My guess is that the full query you want is:

SELECT products.*, productmanufacturers.ManufacturerName , productcategories.CategoryName  FROM products INNER JOIN productmanufacturers ON products.ProductManufacturerID = productmanufacturers.ManufacturerID INNER JOIN productcategories ON products.ProductCategoryID = productcategories.CategoryID WHERE products.ProductLive = 1 ORDER BY Rand()
Sign in to reply to this post
Did this help? Tips are appreciated...

Jamie

got it, thanks Ray....always getting confused on the joins!

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...