Drop Procedure
You are looking at an older version of the documentation. The latest version is found here.
DROP PROCEDURE
Usage
DROP PROCEDURE views.<procedurename>
Syntax Rules
- Do not use the
VIRTUAL
as inCREATE VIRTUAL PROCEDURE
Example
DROP PROCEDURE views.dateaxis
DROP VIRTUAL PROCEDURE IF EXISTS
Usage
DROP PROCEDURE IF EXISTS views.<procedurename>
Example
DROP VIRTUAL PROCEDURE IF EXISTS views.dateaxis ;;
No warning will appear if this procedure does not exist; the Server will quietly execute it.