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, 2745🔥, 0💬
Popular Posts:
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
What Happens to an Arithmetic Operation with Two Different Data Types in SQL Server Transact-SQL? Wh...
How To Provide Default Values to Function Parameters in SQL Server Transact-SQL? If you add a parame...