Collections:
Drop an Existing View in Oracle
How To Drop an Existing View in Oracle?
✍: FYIcenter.com
If you have an existing view, and you don't want it anymore, you can delete it by using the DROP VIEW statement as shown in the following script:
DROP VIEW employee_department; View dropped.
⇒ Understanding SQL DML Statements for Oracle
2020-02-07, 2270🔥, 0💬
Popular Posts:
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
How To List All User Names in a Database in SQL Server? If you want to see a list of all user names ...