###Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table ‘mybatis.users’ doesn’t exist
###The error may exist in file [/Users/mk/Desktop/java/www/springboot/target/classes/mybatis/mapper/UserMapper.xml]
###The error may involve defaultParameterMap
###The error occurred while setting parameters
###SQL: select * from users
###Cause: java.sql.SQLSyntaxErrorException: Table ‘mybatis.users’ doesn’t exist
; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table ‘mybatis.users’ doesn’t exist] with root cause
错误原因:如下图,未指定对应的数据库或者数据库名称不对

解决方案:
改成对应的数据库即可
本文介绍了一种常见的MyBatis使用过程中遇到的问题——表不存在错误,并给出了明确的解决方案。该问题通常出现在配置文件中指定的表名与实际数据库中的表名不匹配时。
5768





