Mysql 创建临时表

create temporary table temp
select *
from intimacy
order by totalTime desc;
  • mysql 临时表只在当前session可见。