mybatis去重查询所有字段
时间: 2023-07-18 19:37:56 浏览: 177
07查询结果映射.md
要查询所有字段并去重,可以使用MyBatis的distinct关键字和ResultMap的方式实现。
首先,在Mapper.xml文件中编写SQL语句,使用distinct关键字去重,并使用ResultMap映射结果集:
```
<select id="selectAllDistinct" resultMap="resultMap">
select distinct * from table_name
</select>
<resultMap id="resultMap" type="entity_class">
<result column="column_name_1" property="property_name_1"/>
<result column="column_name_2" property="property_name_2"/>
...
</resultMap>
```
其中,column表示数据库中的列名,property表示实体类中的属性名。
然后,在Mapper接口中定义方法:
```
List<EntityClass> selectAllDistinct();
```
最后,在Service或Controller中调用该方法即可查询所有字段并去重。
阅读全文