What happens to MySQL temporary tables if MySQL session is ended?



Temporary table would be deleted if MySQL session terminates. After login again, on issuing the SELECT command we will find no data available in the database. Even our temporary table will not exist.


Advertisements