Any Effect Of Fertilizer & Pesticide On Cereals?
Analyzing effects of fertilizer & pesticide use on cereal crop yields worldwide
@kaggle.kkhandekar_any_effect_of_fertilizer_pesticide_on_cereals
Analyzing effects of fertilizer & pesticide use on cereal crop yields worldwide
@kaggle.kkhandekar_any_effect_of_fertilizer_pesticide_on_cereals
CREATE TABLE cerealcropyield_1961_2018 (
"country" VARCHAR,
"yield_hg_ha" BIGINT -- Yield (hg/ha),
"area_harvested_ha" BIGINT -- Area Harvested (ha)
);CREATE TABLE fertilizerconsumption_1961_2018 (
"country" VARCHAR,
"fertilizerquantity" BIGINT
);CREATE TABLE pesticideusage_1990_2017 (
"country" VARCHAR,
"total_pesticides_use_per_area_of_land_kg_ha" DOUBLE -- Total Pesticides Use Per Area Of Land (kg/ha)
);Anyone who has the link will be able to view this.