环境准备
- Docker 启动 Mysql 实例,并且配置主从关系
- GitHub 拉取 shardingsphere 代码到本地,执行安装
- 主库创建数据库 test,创建两张表
create table t_order0
(
order_id bigint not null auto_increment primary key,
user_id bigint not null,
name varchar(100)
);
create table t_order1
(
order_id bigint not null auto_increment primary key,
user_id bigint not null,
name varchar(100)
);
CREATE TABLE