Finance
Marketing
Product
Dataset: thelook_ecommerce
Tables I will be focusing on: orders, order_items, products, users
orders
Order [order_id] was placed by [user_id], containing [num_of_items] items and marked with a status of [status]. It was created on [created_at], shipped on [shipped_at], and delivered on [delivered_at]. If the order status was “cancelled” or “returned,” it was processed for return on [returned_at].
order_items Each ordered item has a unique [id] that links it to the [order_id] placed by [user_id] and identifies the specific [product_id] purchased. Every order item [id] includes the following details: [inventory_item_id], [status], [created_at], [shipped_at], [delivered_at], [returned_at], and [sale_price].
products
A product [id] includes details such as [cost], [category], [name], [brand], [retail_price], [department], [sku], and [distribution_center_id].
users
A user [id] includes information such as [first_name], [last_name], [email], [age], [gender], [state], [street_address], [postal_code], [city], [country], [latitude], [longitude], and [traffic_source], and was created on [created_at] within [user_geom].
Tools:
| Metrics | num_of_items, sale_price |
|---|---|
| Dimensions | created_at, category, brand, age, gender, geographical locations, traffic_source |