You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
preconditions :
tables:
1.drop table if exists tb_parent;
create table if not exists tb_parent (
id int not null,
id2 int not null,
content varchar(250) not null,
primary key(id)
)engine=innodb charset=utf8;
insert into tb_parent values(1,1,'1'),(2,2,'2'),(513,513,'513');
2.drop table if exists tb_child2;
create table if not exists tb_child2 (
child2_id int not null,
content varchar(250) not null
)engine=innodb charset=utf8;
insert into tb_child2 values(1,'1');
insert into tb_child2 values(2,'2');
insert into tb_child2 values(513,'513');
dble version:3.20.07.99
preconditions :
tables:
1.drop table if exists tb_parent;
create table if not exists tb_parent (
id int not null,
id2 int not null,
content varchar(250) not null,
primary key(id)
)engine=innodb charset=utf8;
insert into tb_parent values(1,1,'1'),(2,2,'2'),(513,513,'513');
2.drop table if exists tb_child2;
create table if not exists tb_child2 (
child2_id int not null,
content varchar(250) not null
)engine=innodb charset=utf8;
insert into tb_child2 values(1,'1');
insert into tb_child2 values(2,'2');
insert into tb_child2 values(513,'513');
configs:
cluster.cnf
bootstrap.cnf
db.xml
user.xml
sharding.xml
step1. execute the following sql(notes here 'id' after 'where' does not specify the table name):
1.
1.
1.
The text was updated successfully, but these errors were encountered: