SELECT `Product`.`Name`, `Product`.`Price`, `Orders`.`OrderDate` FROM `Product` INNER JOIN `ProductOrders` ON ( `ProductOrders`.`ProductKey` = `Product`.`ProductKey` ) INNER JOIN `Orders` ON ( `ProductOrders`.`OrdersKey` = `Orders`.`OrdersKey` )