MySQL create table xxx select * from yyy 的坑

create table xxx select * from yyy;

这种写法没有:主键索引约束自增
这种写法没有:主键索引约束自增
这种写法没有:主键索引约束自增
重要的事情说三遍;
替代方案:

create table xxx like yyy;
insert into xxx select * from yyy;

猜你喜欢

转载自blog.csdn.net/ManWZD/article/details/109202835