v.1.1.54362New Feature
Added DROP TEMPORARY TABLE and EXISTS TEMPORARY TABLE Queries
AddedDROP TEMPORARY TABLEandEXISTS TEMPORARY TABLEqueries (zhang2014).
Why it matters
This feature enables users to manage temporary tables more effectively by allowing them to drop temporary tables and check for their existence. It helps improve workflow control and resource management when working with temporary data during query sessions.How to use it
Use theDROP TEMPORARY TABLE statement to delete a temporary table created within the session, and EXISTS TEMPORARY TABLE to verify if a temporary table exists before performing operations on it.