<select id="singerOfName" resultMap="SingerMap" parameterType="java.lang.String"> select id, name, sex, pic, birth, location, introduction from music.singer where name = #{name} </select>
时间: 2024-03-18 22:45:41 浏览: 53
mybatis的mapper.xml中resultMap标签的使用详解
5星 · 资源好评率100%
这是一段 MyBatis 的 XML 配置文件,其中定义了一个名为 singerOfName 的查询语句。该查询语句的作用是根据歌手名字查询对应的歌手信息,包括 id、name、sex、pic、birth、location 和 introduction 等字段。其中 #{name} 是一个参数,表示需要查询的歌手名字。查询结果会通过 SingerMap 映射到一个 Singer 对象中。
阅读全文