http://www.mybatis.org/mybatis-3/zh/sqlmap-xml.html#insert_update_and_delete org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache.ibatis.executor.ExecutorException: No constructor found in tk.mybatis.sprin
A表和B表一对多的关系 A表 B表 A表和C表也是一对多关系 C表 我现在向查询出A表的所有字段和B表的name字段,C表的name字段 这是我错误的sql语句,可以看出我没有查B表和C表的id字段,这也是我后来查出重复字段的原因 select a.*,b.name,c.name from A a left join B b on a.name=b.name left join C c on a.name=c.name 我的Mybatis配置文件是通过resultMap接收返回的对象 <resu