<select id="singerOfSex" resultMap="SingerMap" parameterType="java.lang.Integer"> select id, name, sex, pic, birth, location, introduction from music.singer where sex = #{sex} </select>
时间: 2024-03-18 14:45:39 浏览: 62
如何解决Mybatis--java.lang.IllegalArgumentException: Result Maps collection already contains value for X
这也是一段 MyBatis 的 XML 配置文件,其中定义了一个名为 singerOfSex 的查询语句。该查询语句的作用是根据歌手性别查询对应的歌手信息,包括 id、name、sex、pic、birth、location 和 introduction 等字段。其中 #{sex} 是一个参数,表示需要查询的歌手性别,类型为 Integer。查询结果会通过 SingerMap 映射到一个 Singer 对象中。
阅读全文