MySQL create table xxx select * from yyy 的坑

create table xxx select * from yyy;
1
这种写法没有:主键、索引、约束、自增
这种写法没有:主键、索引、约束、自增
这种写法没有:主键、索引、约束、自增
重要的事情说三遍;
替代方案:

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

 

mysql设置IP连接

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'Cloudscape!@#$' WITH GRANT OPTION;

mysql开启慢查询日志

show variables like 'slow_query%';

 

posted @ 2022-07-21 19:36  不再犯错  阅读(232)  评论(0编辑  收藏  举报