menghaoranss commented on issue #6892:
URL: https://github.com/apache/shardingsphere/issues/6892#issuecomment-675229837


   ```
   spring:
     shardingsphere:
       datasource:
         default-data-source-name: ds0
         names: ds0
         ds0:
           type: com.zaxxer.hikari.HikariDataSource
           driver-class-name: com.mysql.jdbc.Driver
           jdbcUrl: 
jdbc:mysql://127.0.0.1:3306/fiforal_cw?characterEncoding=UTF-8&useUnicode=true&allowMultiQueries=true&&useSSL=true
           username: root
           password: root
       sharding:
         props:
           sql:
             show: true  ###sql.show: true I hava tried
         tables:
           oral_cw_classwork_stu:
             actual-data-nodes: ds0.oral_cw_classwork_stu_${0..9}
             table-strategy:
               inline:
                 sharding-column: school_id
                 algorithm-expression: 
oral_cw_classwork_stu_$->{school_id.toLong()  % 10}
           oral_cw_classwork_stu_content:
             actual-data-nodes: ds0.oral_cw_classwork_stu_content_${0..9}
             table-strategy:
               inline:
                 sharding-column: school_id
                 algorithm-expression: 
oral_cw_classwork_stu_content_$->{school_id.toLong()  % 10}
           oral_cw_multilateral_assessment:
             actual-data-nodes: ds0.oral_cw_multilateral_assessment_${0..9}
             table-strategy:
               inline:
                 sharding-column: school_id
                 algorithm-expression: 
oral_cw_multilateral_assessment_$->{school_id.toLong()  % 10}
           oral_cw_replys:
             actual-data-nodes: ds0.oral_cw_replys_${0..9}
             table-strategy:
               inline:
                 sharding-column: school_id
                 algorithm-expression: oral_cw_replys_$->{school_id.toLong()  % 
10}
           oral_cw_thumbs:
             actual-data-nodes: ds0.oral_cw_thumbs_${0..9}
             table-strategy:
               inline:
                 sharding-column: school_id
                 algorithm-expression: oral_cw_thumbs_$_$->{school_id.toLong()  
% 10}
           oral_cw_comments:
             actual-data-nodes: ds0.oral_cw_comments_${0..9}
             table-strategy:
               inline:
                 sharding-column: school_id
                 algorithm-expression: 
oral_cw_comments_$_$->{school_id.toLong()  % 10}      
         binding-tables: oral_cw_classwork_stu,oral_cw_classwork_stu_content
   ```


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