Back to Presto

DEALLOCATE PREPARE

presto-docs/src/main/sphinx/sql/deallocate-prepare.rst

0.297406 B
Original Source

================== DEALLOCATE PREPARE

Synopsis

.. code-block:: none

DEALLOCATE PREPARE statement_name

Description

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

Examples

Deallocate a statement with the name my_query::

DEALLOCATE PREPARE my_query;

See Also

:doc:prepare