Does anybody know how to create a temp table on MySQL without creating it on the database?
in MS SQL it has something like:
select ...
into #T1 -- this is a temp table
from ...
then, I want to call this #T1 later on the same query window.
Is there an equal command in MySQL?
Please help!
in MS SQL it has something like:
select ...
into #T1 -- this is a temp table
from ...
then, I want to call this #T1 later on the same query window.
Is there an equal command in MySQL?
Please help!