US Startup Companies Over Time (Timeseries)
Startup companies in the US from 2008
@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs
Startup companies in the US from 2008
@kaggle.thedevastator_empowering_the_next_wave_of_entrepreneurs
CREATE TABLE company (
"id" BIGINT,
"company_name" VARCHAR,
"link" VARCHAR,
"short_description" VARCHAR,
"founded" BIGINT,
"team_size" BIGINT,
"location" VARCHAR,
"country" VARCHAR,
"no_founders" BIGINT,
"no_company_socials" BIGINT,
"no_tags" BIGINT,
"description" VARCHAR
);
CREATE TABLE company_social_to_social (
"id" BIGINT,
"social_media_id" BIGINT,
"company_id" BIGINT
);
CREATE TABLE company_to_tag (
"id" BIGINT,
"company_id" BIGINT,
"tag_id" BIGINT
);
CREATE TABLE founder (
"id" BIGINT,
"name" VARCHAR,
"role" VARCHAR,
"company_id" BIGINT
);
CREATE TABLE founder_social_to_social (
"id" BIGINT,
"social_media_id" BIGINT,
"founder_id" BIGINT
);
CREATE TABLE socials (
"id" BIGINT,
"social" VARCHAR
);
CREATE TABLE tags (
"id" BIGINT,
"tag" VARCHAR
);
CREATE TABLE ycombinator (
"company_name" VARCHAR,
"link" VARCHAR,
"short_description" VARCHAR,
"tags" VARCHAR,
"company_socials" VARCHAR,
"founded" DOUBLE,
"team_size" DOUBLE,
"full_location" VARCHAR,
"location" VARCHAR,
"active_founders" VARCHAR,
"about_founders" VARCHAR,
"description" VARCHAR
);
CREATE TABLE ycombinator_all (
"company_id" BIGINT,
"company_name" VARCHAR,
"link" VARCHAR,
"short_description" VARCHAR,
"tags" VARCHAR,
"company_socials" VARCHAR,
"founded" BIGINT,
"team_size" BIGINT,
"full_location" VARCHAR,
"location" VARCHAR,
"active_founders" VARCHAR,
"about_founders" VARCHAR,
"description" VARCHAR,
"no_founders" BIGINT,
"no_company_socials" BIGINT,
"no_tags" BIGINT,
"country" VARCHAR
);
Anyone who has the link will be able to view this.