Baselight

Sales Of A Supermarket

Record of sales data in three different supermarkets.

@kaggle.lovishbansal123_sales_of_a_supermarket

Supermarket Sales
@kaggle.lovishbansal123_sales_of_a_supermarket.supermarket_sales

  • 61.58 KB
  • 1000 rows
  • 17 columns
invoice_id

Invoice ID

branch

Branch

city

City

customer_type

Customer Type

gender

Gender

product_line

Product Line

unit_price

Unit Price

quantity

Quantity

tax_5

Tax 5%

total

Total

date

Date

time

Time

payment

Payment

cogs

Cogs

gross_margin_percentage

Gross Margin Percentage

gross_income

Gross Income

rating

Rating

750-67-8428AYangonMemberFemaleHealth and beauty74.69726.1415548.9715Sat Jan 05 2019 00:00:00 GMT+0000 (Coordinated Universal Time)13:08Ewallet522.834.76190476226.14159.1
226-31-3081CNaypyitawNormalFemaleElectronic accessories15.2853.8280.22Fri Mar 08 2019 00:00:00 GMT+0000 (Coordinated Universal Time)10:29Cash76.44.7619047623.829.6
631-41-3108AYangonNormalMaleHome and lifestyle46.33716.2155340.5255Sun Mar 03 2019 00:00:00 GMT+0000 (Coordinated Universal Time)13:23Credit card324.314.76190476216.21557.4
123-19-1176AYangonMemberMaleHealth and beauty58.22823.288489.048Sun Jan 27 2019 00:00:00 GMT+0000 (Coordinated Universal Time)20:33Ewallet465.764.76190476223.2888.4
373-73-7910AYangonNormalMaleSports and travel86.31730.2085634.3785Fri Feb 08 2019 00:00:00 GMT+0000 (Coordinated Universal Time)10:37Ewallet604.174.76190476230.20855.3
699-14-3026CNaypyitawNormalMaleElectronic accessories85.39729.8865627.6165Mon Mar 25 2019 00:00:00 GMT+0000 (Coordinated Universal Time)18:30Ewallet597.734.76190476229.88654.1
355-53-5943AYangonMemberFemaleElectronic accessories68.84620.652433.692Mon Feb 25 2019 00:00:00 GMT+0000 (Coordinated Universal Time)14:36Ewallet413.044.76190476220.6525.8
315-22-5665CNaypyitawNormalFemaleHome and lifestyle73.561036.78772.38Sun Feb 24 2019 00:00:00 GMT+0000 (Coordinated Universal Time)11:38Ewallet735.64.76190476236.788
665-32-9167AYangonMemberFemaleHealth and beauty36.2623.62676.146Thu Jan 10 2019 00:00:00 GMT+0000 (Coordinated Universal Time)17:15Credit card72.524.7619047623.6267.2
692-92-5582BMandalayMemberFemaleFood and beverages54.8438.226172.746Wed Feb 20 2019 00:00:00 GMT+0000 (Coordinated Universal Time)13:27Credit card164.524.7619047628.2265.9

CREATE TABLE supermarket_sales (
  "invoice_id" VARCHAR,
  "branch" VARCHAR,
  "city" VARCHAR,
  "customer_type" VARCHAR,
  "gender" VARCHAR,
  "product_line" VARCHAR,
  "unit_price" DOUBLE,
  "quantity" BIGINT,
  "tax_5" DOUBLE,
  "total" DOUBLE,
  "date" TIMESTAMP,
  "time" VARCHAR,
  "payment" VARCHAR,
  "cogs" DOUBLE,
  "gross_margin_percentage" DOUBLE,
  "gross_income" DOUBLE,
  "rating" DOUBLE
);

Share link

Anyone who has the link will be able to view this.