在MyBatis中进行模糊查询并忽略大小写,可以使用MySQL的LOWER函数将查询条件和数据库中的数据都转换为小写进行比较。具体步骤如下:
<select id="selectByKeyword" resultType="YourResultType">
SELECT * FROM your_table
WHERE LOWER(your_column) LIKE CONCAT('%', LOWER(#{keyword}), '%')
</select>
YourResultType result = yourMapper.selectByKeyword("your_keyword");
这样就可以实现在进行模糊查询时忽略大小写。