mysql5.7用命令create table xxxxx select * from xx 报错
解决办法:
分两步进行
create table xxxx like xx;
insert into xxxx select * from xx;
Error Code: 1786 Statement violates GTID consistency: CREATE TABLE ... SELECT.
最新推荐文章于 2023-11-05 10:32:11 发布
mysql5.7用命令create table xxxxx select * from xx 报错
解决办法:
分两步进行
create table xxxx like xx;
insert into xxxx select * from xx;