MySQL创建临时表

1 drop TEMPORARY table if EXISTS temp_table;
2 create TEMPORARY table temp_table(
3     id int not null,
4     username VARCHAR(20),
5     PRIMARY key(id)
6 );

 

posted @ 2017-08-31 18:59  silentmuh  阅读(491)  评论(0编辑  收藏  举报
Live2D