ビューの削除
説明
このステートメントは、ビューを削除するために使用されます。
構文
DROP VIEW [IF EXISTS]
[db_name.]view_name
例
-
存在する場合、example_db 上のビュー example_view を削除します。
DROP VIEW IF EXISTS example_db.example_view;
AI generated answers are based on docs and other sources. Please test answers in non-production environments.