8.11. DEALLOCATE PREPARE

Synopsis

  1. DEALLOCATE PREPARE statement_name

Description

Removes a statement with the name statement_name from the list of preparedstatements in a session.

Examples

Deallocate a statement with the name my_query:

  1. DEALLOCATE PREPARE my_query;

See Also

PREPARE