Mobile Phones
List contains the Best Selling Mobile Phones till 2021
@kaggle.muhammedtausif_best_selling_mobile_phones
List contains the Best Selling Mobile Phones till 2021
@kaggle.muhammedtausif_best_selling_mobile_phones
This is a list of best-selling mobile phones in CSV Format. Nokia 1100 and Nokia 1110 are the best-selling devices, released in 2003 and 2005. The list contains all the best-selling devices till 2021.
CREATE TABLE best_selling_mobile_phones (
"manufacturer" VARCHAR,
"model" VARCHAR,
"form" VARCHAR,
"smartphone" VARCHAR,
"year" BIGINT,
"units_sold_m" DOUBLE
);CREATE TABLE best_selling_mobile_phones_2020 (
"no" BIGINT,
"phone" VARCHAR,
"company" VARCHAR,
"sold_million" DOUBLE -- Sold(million)
);CREATE TABLE mobile_phone_brands_by_country (
"region" VARCHAR,
"country" VARCHAR,
"brand" VARCHAR
);CREATE TABLE total_phone_devices_by_company_2021 (
"phone" VARCHAR,
"total_devices" BIGINT
);Anyone who has the link will be able to view this.