TechSales Bakutech
A Comprehensive Dataset for Bakutech
@kaggle.farhadzeynalli_techsales_bakutech
A Comprehensive Dataset for Bakutech
@kaggle.farhadzeynalli_techsales_bakutech
This dataset consists of .csv and .pbix files that contain Bakutech sales information. In pbix file, the relational database was built, and various DAX formulas were applied to visualize data, including gross profit margin, net profit margin, most popular product, previous month's order, return on assets, return on equity, total revenue, total quantity sold, and total orders.
CREATE TABLE assets (
"cash_assets" BIGINT,
"inventory" BIGINT,
"equipment" BIGINT,
"accounts_receivable" BIGINT,
"total_assets" BIGINT,
"shareholder_equity" BIGINT,
"total_liabilities" BIGINT
);
CREATE TABLE customer_lookup (
"customer_id" BIGINT,
"name" VARCHAR,
"surname" VARCHAR,
"email" VARCHAR,
"age" BIGINT,
"education" VARCHAR,
"city" VARCHAR,
"marital_status" VARCHAR
);
CREATE TABLE dates (
"da" TIMESTAMP,
"e" VARCHAR
);
CREATE TABLE product_categories (
"productcategorykey" BIGINT,
"categoryname" VARCHAR
);
CREATE TABLE product_returns (
"returndate" TIMESTAMP,
"productkey" BIGINT,
"returnquantity" BIGINT
);
CREATE TABLE products_lookup (
"productkey" BIGINT,
"productsubcategorykey" BIGINT,
"productname" VARCHAR,
"modelname" VARCHAR,
"productdescription" VARCHAR,
"productcolor" VARCHAR,
"productcost" DOUBLE,
"productprice" DOUBLE
);
CREATE TABLE product_subcategories (
"productsubcategorykey" BIGINT,
"subcategoryname" VARCHAR,
"productcategorykey" BIGINT
);
CREATE TABLE sales_data (
"orderdate" TIMESTAMP,
"stockdate" TIMESTAMP,
"ordernumber" BIGINT,
"productkey" BIGINT,
"customerkey" BIGINT,
"orderlineitem" BIGINT,
"orderquantity" BIGINT
);
Anyone who has the link will be able to view this.