首页
it技术
登录
6mi
u
盘
搜
搜 索
it技术
MySQL create table xxx select * from yyy 的坑
MySQL create table xxx select * from yyy 的坑
it
2024-10-29
7
create
table
xxx
select
*
from
yyy
;
这种写法没有:主键、索引、约束、自增 这种写法没有:主键、索引、约束、自增 这种写法没有:主键、索引、约束、自增 重要的事情说三遍; 替代方案:
create
table
xxx
like
yyy
;
insert
into
xxx
select
*
from
yyy
;
转载请注明原文地址: https://lol.8miu.com/read-19798.html
最新回复
(
0
)