Global Sea Temperatures - 18/07/2022
Global Sea Temperatures as on 18 Jul 2022
@kaggle.kkhandekar_global_sea_temperatures_18072022
Global Sea Temperatures as on 18 Jul 2022
@kaggle.kkhandekar_global_sea_temperatures_18072022
Joining key File#1 to File#2 = Country
Joining key File#2 to File#3 = City
I agree I could've put everything in one single CSV but I just wanted it to be organized.
Note: The SeaTemperatures.csv file needs data cleansing.
CREATE TABLE cities (
"country" VARCHAR,
"city" VARCHAR
);CREATE TABLE countries (
"continent" VARCHAR,
"country" VARCHAR
);CREATE TABLE seatemperatures (
"city" VARCHAR,
"currtemp" VARCHAR,
"windspeed" VARCHAR,
"humidity" VARCHAR
);Anyone who has the link will be able to view this.