Data Management in Databricks
Smriti Mishra
Founder, NordData Insight

CREATE VIEW or CREATE OR REPLACE VIEW create/update views.
-- Create a view to get recipes with a preparation time of 30 minutes or less
CREATE VIEW QuickRecipes AS
SELECT recipe_id, recipe_name, ingredients, preparation_time
FROM recipes
WHERE preparation_time <= 30;
CREATE OR REPLACE TEMP VIEW



Data Management in Databricks