10 lines
146 B
SQL
10 lines
146 B
SQL
-- Syntax
|
|
-- DROP VIEW [ IF EXISTS ] view_identifier
|
|
|
|
|
|
DROP VIEW employeeView;
|
|
|
|
DROP VIEW userDB.employeeView;
|
|
|
|
DROP VIEW IF EXISTS employeeView;
|