mysql创建和保存临时表

方法一:

drop  table if exists x;

create table x as +select * from ...

方法二:

create temporary table x  +select * from ...;

 

posted @ 2020-10-28 21:13  爬爬QQ  阅读(604)  评论(0)    收藏  举报