当前位置: 代码迷 >> MySQL >> Mysql不支持 SELECT INTO复制表Create table Select 顶替
  详细解决方案

Mysql不支持 SELECT INTO复制表Create table Select 顶替

热度:1097   发布时间:2016-05-05 17:14:14.0
Mysql不支持 SELECT INTO复制表Create table Select 替代

?

Mysql不支持

??? Select * Into new_table_name from old_table_name;
替代方法:
???? Create table new_table_name Select * from old_table_name where id = -1;

?

insert into dust select * from student;//已经创建了新表dust的情况下

?

  相关解决方案