hi,
You can use the TEMPORARY keyword when creating a table.A TEMPORARY table is visible only to the current connection, and is dropped automatically when the connection is closed.This means that two different connections can use the same temporary table name without conflicting with each other or with an existing non-TEMPORARY table of the same name.
Regards,