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.
最新推荐文章于 2025-06-12 19:41:42 发布
mysql5.7用命令create table xxxxx select * from xx 报错
解决办法:
分两步进行
create table xxxx like xx;
insert into xxxx select * from xx;