DROP VIEW
Explains how to use the DROP VIEW statement to remove one or more views from the database, including required privileges.
Last updated
Was this helpful?
Was this helpful?
DROP VIEW v,v2;DROP VIEW v,v2,v3;
ERROR 1051 (42S02): Unknown table 'v3'DROP VIEW IF EXISTS v,v2,v3;
Query OK, 0 rows affected, 1 warning (0.01 sec)
SHOW WARNINGS;
+-------+------+-------------------------+
| Level | Code | Message |
+-------+------+-------------------------+
| Note | 1051 | Unknown table 'test.v3' |
+-------+------+-------------------------+