[, Home >Database >Mysql Tutorial >How to delete a view in mysql? In mysql, you can use the "DROP VIEW" statement to delete a view. The syntax format is "DROP VIEW ea5dd2fbdee480281a8391047fa1af45 [, 11c1ebc9145b5e9169848415c92df795 ...]". The "DROP VIEW" statement can delete multiple views at one time, but you must have DROP permission on each view. (Recommended tutorial: mysql video tutorial) Deleting a view means deleting MySQL A view that already exists in the database. When you delete a view, only the definition of the view is deleted, but the data is not deleted. Basic syntax You can use the The syntax format is as follows: Among them: Delete view [Example] Delete the v_students_info view. The input SQL statement and execution process are as follows. You can see that the v_students_info view no longer exists and it was successfully deleted. The above is the detailed content of How to delete a view in mysql?. For more information, please follow other related articles on the PHP Chinese website!How to delete a view in mysql?
DROP VIEW
statement to delete a view. DROP VIEW <视图名1> [ , <视图名2> …]
f96a157a4ed7a8435db1751107a46e3c
Specify the name of the view to be deleted. DROP VIEW
statement can delete multiple views at one time, but you must have DROP permission on each view. mysql> DROP VIEW IF EXISTS v_students_info;
Query OK, 0 rows affected (0.00 sec)
mysql> SHOW CREATE VIEW v_students_info;
ERROR 1146 (42S02): Table 'test_db.v_students_info' doesn't exist