ReferenceSQL statementsViewDROP VIEWVersion: Latest-4.1On this pageCopy as MarkdownView as Markdown/docs/sql-reference/sql-statements/View/DROP_VIEW.mdOpen in ClaudeOpen in ChatGPTBrowse all docs as Markdown/llms.txtDROP VIEW DROP VIEW is used to drop a logical view VIEW Syntaxβ DROP VIEW [IF EXISTS][db_name.]view_name Examplesβ If it exists, then drop the view example_view on example_db. DROP VIEW IF EXISTS example_db.example_view;