You are on page 1of 1

The transaction data from an online store is being provide to you in the form of two datasets – one

containing the details of the products, and the other containing that of the orders placed. The online store
would like to propose products to its customers based on their recent purchase. To make this targeted to
the customers, the store would like to figure out as to which product(s) to pitch to any given customer.
They have approached you to be their consultant in this endeavor. You are expected to provide them with
a solution based on the data provided. The details of the datasets are as follows:

ProductDetails:
• product_id: product identifier
• product_name: name of the product
• aisle_id: foreign key
• department_id: foreign key

OrderDetails
• order_id: foreign key
• product_id: foreign key
• add_to_cart_order: order in which each product was added to cart
• reordered: 1 if this product has been ordered by this user in the past, 0 otherwise

You might also like