young138120 commented on issue #25260:
URL:
https://github.com/apache/shardingsphere/issues/25260#issuecomment-1517455216
init sql:
```sql
CREATE TABLE `cs_customer` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客户表id',
`customer_name` varchar(255) NOT NULL COMMENT '客户名称 ',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='客户管理信息主表'
```
```sql
CREATE TABLE `or_order_state_record` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '订单状态表id',
`order_id` bigint(20) DEFAULT NULL COMMENT '订单id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单状态记录表'
```
```sql
CREATE TABLE `or_rescue_order` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '订单id',
`customer_id` int(11) DEFAULT NULL COMMENT '客户id',
`book_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '预定时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单表'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]