Fish And Overfishing
How the Global Fish production is done and managed throught the years
@kaggle.sergegeukjian_fish_and_overfishing
How the Global Fish production is done and managed throught the years
@kaggle.sergegeukjian_fish_and_overfishing
CREATE TABLE aquaculture_farmed_fish_production (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"aquaculture_production_metric_tons" DOUBLE -- Aquaculture Production (metric Tons)
);
CREATE TABLE capture_fisheries_vs_aquaculture (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"aquaculture_production_metric_tons" DOUBLE -- Aquaculture Production (metric Tons),
"capture_fisheries_production_metric_tons" DOUBLE -- Capture Fisheries Production (metric Tons)
);
CREATE TABLE capture_fishery_production (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"capture_fisheries_production_metric_tons" DOUBLE -- Capture Fisheries Production (metric Tons)
);
CREATE TABLE fish_and_seafood_consumption_per_capita (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"fish_seafood_food_supply_quantity_kg_capita_yr_fao_2020" DOUBLE -- Fish, Seafood- Food Supply Quantity (kg/capita/yr) (FAO, 2020)
);
CREATE TABLE fish_stocks_within_sustainable_levels (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"share_of_fish_stocks_within_biologically_sustainable_l_7b32dd67" DOUBLE -- Share Of Fish Stocks Within Biologically Sustainable Levels (FAO, 2020),
"share_of_fish_stocks_that_are_overexploited" DOUBLE
);
CREATE TABLE global_fishery_catch_by_sector (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"artisanal_small_scale_commercial" BIGINT -- Artisanal (small-scale Commercial),
"discards" BIGINT,
"industrial_large_scale_commercial" BIGINT -- Industrial (large-scale Commercial),
"recreational" BIGINT,
"subsistence" BIGINT
);
CREATE TABLE seafood_and_fish_production_thousand_tonnes (
"entity" VARCHAR,
"code" VARCHAR,
"year" BIGINT,
"commodity_balances_livestock_and_fish_primary_equivale_84545c04" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Pelagic Fish - 2763 - Production - 5510 - Tonnes,
"commodity_balances_livestock_and_fish_primary_equivale_de8146f7" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Crustaceans - 2765 - Production - 5510 - Tonnes,
"commodity_balances_livestock_and_fish_primary_equivale_2e881831" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Cephalopods - 2766 - Production - 5510 - Tonnes,
"commodity_balances_livestock_and_fish_primary_equivale_5c2e32b3" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Demersal Fish - 2762 - Production - 5510 - Tonnes,
"commodity_balances_livestock_and_fish_primary_equivale_37e6b974" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Freshwater Fish - 2761 - Production - 5510 - Tonnes,
"commodity_balances_livestock_and_fish_primary_equivale_8501cda6" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Molluscs, Other - 2767 - Production - 5510 - Tonnes,
"commodity_balances_livestock_and_fish_primary_equivale_009dc365" DOUBLE -- Commodity Balances - Livestock And Fish Primary Equivalent - Marine Fish, Other - 2764 - Production - 5510 - Tonnes
);
Anyone who has the link will be able to view this.