Help Center/
MapReduce Service/
Component Operation Guide (LTS)/
Using HetuEngine/
Common HetuEngine SQL Syntax/
DDL Syntax/
DROP VIEW
Updated on 2024-10-25 GMT+08:00
DROP VIEW
Syntax
DROP VIEW [ IF EXISTS ] view_name
Description
This statement is used to delete an existing view. If the optional parameter IF EXISTS is specified and the view to be deleted does not exist, no error is reported.
Example
- Creating a View
create view orders_by_date as select * from orders;
- Delete the orders_by_date view. If the view does not exist, an error is reported.
DROP VIEW orders_by_date;
- Delete the orders_by_date view. Use the IF EXISTS parameter. If the view exists, it will be deleted. If the view does not exist, no error will be reported.
DROP VIEW IF EXISTS orders_by_date;
Parent topic: DDL Syntax
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot