MySQL create table xxx select * from yyy 的坑

it2024-10-29  7

create table xxx select * from yyy;

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

create table xxx like yyy; insert into xxx select * from yyy;
最新回复(0)