DEALLOCATE
是用于创建已准备语句的实用程序命令。
DEALLOCATE
添加于 PostgreSQL 7.3。
更改历史
- PostgreSQL 8.3
- 添加了
DEALLOCATE ALL
语法 (提交 d13e903b)
- 添加了
- PostgreSQL 7.3
- 添加 (提交 28e82066)
示例
DEALLOCATE
的基本用法示例
postgres=# PREPARE some_stmt AS SELECT 1; PREPARE postgres=# DEALLOCATE some_stmt; DEALLOCATE
尝试删除不存在的已准备语句
postgres=# DEALLOCATE other_stmt; ERROR: prepared statement "other_stmt" does not exist
参考文献
- PostgreSQL 文档: DEALLOCATE