SQL CommandsDDL CommandsViewDROP VIEW本页总览DROP VIEWDrop the view.SyntaxDROP VIEW [IF EXISTS] [db.]view_nameExamplesDROP VIEW IF EXISTS tmp_view;SELECT * FROM tmp_view;ERROR 1105 (HY000): Code: 1025, displayText = Unknown table 'tmp_view'.