taojintianxia commented on issue #5957:
URL: https://github.com/apache/shardingsphere/issues/5957#issuecomment-641846273


   following is the database structure for my testing : 
    
   ```sql
   CREATE TABLE `t_test` (
     `f_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键id',
     `f_user_id` bigint(20) unsigned NOT NULL COMMENT '用户id',
     `f_money` decimal(36,18) NOT NULL DEFAULT '0.000000000000000000' COMMENT 
'钱啊钱',
     PRIMARY KEY (`f_id`)
   ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='测试表';
   ```
   
   I use this sql create 3 datasource , they are : 
   
   ```
   source_shema.t_test
   target_schema_0.t_test
   targete_shcema_1.t_test
   ```
   
   what I'm trying to do is transfer the data in source_shema.t_test , and then 
shard to target_schema_0.t_test and targete_shcema_1.t_test


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to