MySQL Drop view
MySQL Drop view
To DROP a MySQL view uses keyword drop view syntax.
MySQL Drop view syntax
DROP VIEW view_name;
Drop view example
DROP VIEW test_view;
Output
view TEST_VIEW dropped.
To DROP a MySQL view uses keyword drop view syntax.
DROP VIEW view_name;
DROP VIEW test_view;
view TEST_VIEW dropped.