Fast Food Nutrition
Nutritional Values, Micronutrients, and Calories from Six Fast Food Restaurants
@kaggle.joebeachcapital_fast_food
Nutritional Values, Micronutrients, and Calories from Six Fast Food Restaurants
@kaggle.joebeachcapital_fast_food
Nutritional values, including Calories and Micro-nutrients from six of the largest and most popular fast food restaurants:
Attributes include: Calories, Calories from Fat, Total Fat, Saturated Fat, Trans Fat, Cholesterol, Sodium, Carbs, Fiber, Sugars, Protein, and Weight Watchers Points (where available).
CREATE TABLE fastfoodnutritionmenuv2 (
"company" VARCHAR,
"item" VARCHAR,
"calories" VARCHAR,
"calories_from_fat" VARCHAR,
"total_fat_g" VARCHAR -- Total Fat (g),
"saturated_fat_g" VARCHAR -- Saturated Fat (g),
"trans_fat_g" VARCHAR -- Trans Fat (g),
"cholesterol_mg" VARCHAR -- Cholesterol (mg),
"sodium_mg" VARCHAR -- Sodium (mg),
"carbs_g" VARCHAR -- Carbs (g),
"fiber_g" VARCHAR -- Fiber (g),
"sugars_g" VARCHAR -- Sugars (g),
"protein_g" VARCHAR -- Protein (g),
"weight_watchers_pnts" VARCHAR
);CREATE TABLE fastfoodnutritionmenuv3 (
"company" VARCHAR,
"item" VARCHAR,
"calories" VARCHAR,
"calories_from_fat" VARCHAR,
"total_fat_g" VARCHAR -- Total Fat (g),
"saturated_fat_g" VARCHAR -- Saturated Fat (g),
"trans_fat_g" VARCHAR -- Trans Fat (g),
"cholesterol_mg" VARCHAR -- Cholesterol (mg),
"sodium_mg" VARCHAR -- Sodium (mg),
"carbs_g" VARCHAR -- Carbs (g),
"fiber_g" VARCHAR -- Fiber (g),
"sugars_g" VARCHAR -- Sugars (g),
"protein_g" VARCHAR -- Protein (g),
"weight_watchers_pnts" VARCHAR
);Anyone who has the link will be able to view this.