一、修改配置
修改schema.xml的 checkSQLschema=“false”,改为true即可
<schema name="db_student" checkSQLschema="true" sqlMaxLimit="100">
当该值为true时,例如我们执行语句select * from db.company 。mycat会把语句修改为 select * from company 去掉db。
二、修改sql
SELECT t.* FROM db_student.student_score t
去掉db_student,修改为
SELECT t.* FROM student_score t