The CLOSE statement deletes a result table (see
result table name).Syntax
<close_statement> ::= CLOSE [<result_table_name>]
result_table_nameExplanation
An unnamed result table is implicitly deleted by the next
SELECT statement.Result tables are implicitly deleted when a result table with the same name is generated.
All result tables generated within the current transaction are implicitly deleted at the end of the transaction using the
ROLLBACK statement.All result tables are implicitly deleted at the end of the session using the
RELEASE statement.