Skip to main content
Skip table of contents

Drop Procedure

You are looking at an older version of the documentation. The latest version is found here.

DROP PROCEDURE

Usage

SQL
DROP PROCEDURE views.<procedurename>

Syntax Rules

  • Do not use the VIRTUAL as in CREATE VIRTUAL PROCEDURE

Example

SQL
DROP PROCEDURE views.dateaxis

DROP VIRTUAL PROCEDURE IF EXISTS

Usage

SQL
DROP PROCEDURE IF EXISTS views.<procedurename>

Example

SQL
DROP VIRTUAL PROCEDURE IF EXISTS views.dateaxis ;;

No warning will appear if this procedure does not exist; the Server will quietly execute it.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.