Price Of Petroleum Products In India
price of petroleum products
@kaggle.arunkumar413_curude_oil_diesel_petrol_and_lpg_prices
price of petroleum products
@kaggle.arunkumar413_curude_oil_diesel_petrol_and_lpg_prices
Context
Prices of petroleum products have a major impact on the prices of other commodities and economy of common man
Content
This data set contains the prices of petroleum products in the Indian metro cities over the years.
Acknowledgements
Indian Oil corporation
Inspiration
I want to analyse the prices of petroleum products and their impact on the economy of the country and the lives of the common man
CREATE TABLE indian_petrolium_product_prices_crude_oil_price (
"date" VARCHAR,
"price_usd" DOUBLE -- Price (USD),
"change" VARCHAR
);CREATE TABLE indian_petrolium_product_prices_diesel (
"date" TIMESTAMP,
"delhi" DOUBLE,
"kolkata" DOUBLE,
"mumbai" DOUBLE,
"chennai" DOUBLE
);CREATE TABLE indian_petrolium_product_prices_non_subsidised_cylinder (
"date" VARCHAR,
"delhi" VARCHAR,
"kolkata" VARCHAR,
"mumbai" DOUBLE,
"chennai" VARCHAR
);CREATE TABLE indian_petrolium_product_prices_subsidised (
"date" VARCHAR,
"delhi" VARCHAR,
"kolkata" VARCHAR,
"mumbai" DOUBLE,
"chennai" VARCHAR
);Anyone who has the link will be able to view this.