Forum Moderators: open
SELECT
Product, Image, ProductTitle.Title as ProductTitle, ImageTitle.Title as ImageTitle
FROM
Company
LEFT JOIN Product ON Company.CompanyID = Product.CompanyID
LEFT JOIN Product2Image ON Product.ProductID = Product2Image.ProductID
LEFT JOIN Image ON Product2Image.ImageID = Image.ImageID
LEFT JOIN Product2Title ON Product.ProductID = Product2Title.ProductID
LEFT JOIN Image2Title ON Image.ImageID = Image2Title.ImageID
LEFT JOIN Title ProductTitle ON Product2Title.TitleID = ProductTitle.TitleID
LEFT JOIN Title ImageTitle ON Image2Title.TitleID = ImageTitle.TitleID
Next i want to show the ProductTitle.Title and ImageTitle.Title in one column creating more rows that way and keeping the 'original' data in the rows. Is this possible?