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, 2350🔥, 0💬
Popular Posts:
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...