Sales Data
retail sales data from an online store
@kaggle.ronnykym_online_store_sales_data
retail sales data from an online store
@kaggle.ronnykym_online_store_sales_data
Deluxe is an online retailer based in UK that deals in a wide range of products in the following categories:
Data Description:
dates: sale date
order_value_EUR : sale price in EUR
cost: cost of goods sold in EUR
category: item category
country: customers' country at the time of purchase
customer_name: name of customer
device_type: The gadget used by customer to access our online store(PC, mobile, tablet)
sales_manager: name of the sales manager for each sale
sales_representative: name of the sales rep for each sale
order_id: unique identifier of an order
The data was recorded for the period 1/2/2019 and 12/30/2020 with an aim to generate business insights to guide business direction. We would like to see what interesting insights the Kaggle community members can produce from this data.
CREATE TABLE sales_export_2019_2020 (
"country" VARCHAR,
"n__order_value_eur" DOUBLE -- Order Value EUR,
"n__cost" DOUBLE -- Cost,
"date" TIMESTAMP,
"category" VARCHAR,
"customer_name" VARCHAR,
"sales_manager" VARCHAR,
"sales_rep" VARCHAR,
"device_type" VARCHAR,
"order_id" VARCHAR
);
Anyone who has the link will be able to view this.