Airbnb Listings In London
Explore How Airbnb is Used Across London
@kaggle.thedevastator_airbnb_listings_in_london_neighbourhoods_and_rev
Explore How Airbnb is Used Across London
@kaggle.thedevastator_airbnb_listings_in_london_neighbourhoods_and_rev
CREATE TABLE listings (
"index" BIGINT,
"id" BIGINT,
"name" VARCHAR,
"host_id" BIGINT,
"host_name" VARCHAR,
"neighbourhood_group" VARCHAR,
"neighbourhood" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"room_type" VARCHAR,
"price" BIGINT,
"minimum_nights" BIGINT,
"number_of_reviews" BIGINT,
"last_review" TIMESTAMP,
"reviews_per_month" DOUBLE,
"calculated_host_listings_count" BIGINT,
"availability_365" BIGINT
);
CREATE TABLE neighbourhoods (
"index" BIGINT,
"neighbourhood_group" VARCHAR,
"neighbourhood" VARCHAR
);
CREATE TABLE reviews (
"index" BIGINT,
"listing_id" BIGINT,
"date" TIMESTAMP
);
Anyone who has the link will be able to view this.