Technology Mergers & Acquisitions
Four .csv files containing data from CruchBase on 36 Tech Giants
@kaggle.joebeachcapital_technology_mergers_and_acquisitions
Four .csv files containing data from CruchBase on 36 Tech Giants
@kaggle.joebeachcapital_technology_mergers_and_acquisitions
CREATE TABLE acquired_tech_companies (
"company" VARCHAR,
"crunchbase_profile" VARCHAR,
"image" VARCHAR,
"tagline" VARCHAR,
"year_founded" DOUBLE,
"market_categories" VARCHAR,
"address_hq" VARCHAR,
"city_hq" VARCHAR,
"state_region_hq" VARCHAR,
"country_hq" VARCHAR,
"description" VARCHAR,
"homepage" VARCHAR,
"twitter" VARCHAR,
"acquired_by" VARCHAR,
"acquisitions_id" VARCHAR,
"api" VARCHAR
);
CREATE TABLE acquiring_tech_companies (
"acquiring_company" VARCHAR,
"crunchbase_profile" VARCHAR,
"image" VARCHAR,
"tagline" VARCHAR,
"market_categories" VARCHAR,
"year_founded" BIGINT,
"ipo" VARCHAR,
"founders" VARCHAR,
"number_of_employees" DOUBLE,
"number_of_employees_year_of_last_update" DOUBLE,
"total_funding" BIGINT,
"number_of_acquisitions" BIGINT,
"board_members" VARCHAR,
"address_hq" VARCHAR,
"city_hq" VARCHAR,
"state_region_hq" VARCHAR,
"country_hq" VARCHAR,
"description" VARCHAR,
"homepage" VARCHAR,
"twitter" VARCHAR,
"acquired_companies" VARCHAR,
"acquisitions_id" VARCHAR,
"api" VARCHAR
);
CREATE TABLE acquisitions (
"acquisitions_id" VARCHAR,
"acquired_company" VARCHAR,
"acquiring_company" VARCHAR,
"year_of_acquisition_announcement" BIGINT,
"deal_announced_on" VARCHAR,
"price" VARCHAR,
"status" VARCHAR,
"terms" VARCHAR,
"acquisition_profile" VARCHAR,
"news" VARCHAR,
"news_link" VARCHAR
);
CREATE TABLE founders_and_board_members (
"name" VARCHAR,
"crunchbase_profile" VARCHAR,
"role" VARCHAR,
"companies" VARCHAR,
"image" VARCHAR
);
Anyone who has the link will be able to view this.