Collections:
Drop an Existing View in MySQL
How To Drop an Existing View in MySQL?
✍: FYIcenter.com
If you have an existing view, and you don't want it anymore, you can delete it by using the "DROP VIEW viewName" statement as shown in the following script:
mysql> DROP VIEW faqComment; Query OK, 0 rows affected (0.00 sec) mysql> SELECT * FROM faqComment; ERROR 1146 (42S02): Table 'fyi.faqcomment' doesn't exist
⇒ INSERT, UPDATE and DELETE Statements in MySQL
2018-01-24, 3097🔥, 0💬
Popular Posts:
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...