DROP VIEW

DROP VIEW deletes an existing view.

Syntax

DROP VIEW <name>

Parameters

  • name - the name of the view to be deleted.

Examples

The following command will drop the view named recent_series:

DROP VIEW recent_series;

See also