只能使用多表联合查询方式. 要求:查询出的列别和属性名相同。
点字符 "." 在 SQL 是关键字符,两侧添加反单引号(Tab键上的一个字符)
<select id="selAll" resultType="student"> select t.id `teacher.id`, t.name `teacher.name`, s.id id, s.name name,age,tid from student s LEFT JOIN teacher t on t.id=s.tid </select>
这种采用auto_mapping的链表查询,只适合一个对象关联了另外一个对象,但是如果一个对象关联了另一个对象的集合,就没有办法了,必须采用resultMap标签
原文地址:https://www.cnblogs.com/cplinux/p/9657072.html
时间: 2024-10-01 07:23:27