DEALLOCATE PREPARE#
Примечание
Ниже приведена оригинальная документация Trino. Скоро мы ее переведем на русский язык и дополним полезными примерами.
Синтаксис#
DEALLOCATE PREPARE statement_name
Описание#
Removes a statement with the name statement_name
from the list of prepared
statements in a session.
Примеры#
Deallocate a statement with the name my_query
:
DEALLOCATE PREPARE my_query;