🏠ReferenceSQLDDL CommandsLogical ViewDROP VIEWVersion: 0.7.0On this pageDROP VIEWDrop the view.SyntaxDROP VIEW [IF EXISTS] [db.]view_nameExamplesmysql> DROP VIEW IF EXISTS tmp_view;mysql> select * from tmp_view;ERROR 1105 (HY000): Code: 1025, displayText = Unknown table 'tmp_view'.