在 MyBatis 中動態表名查詢可以通過使用 MyBatis 的動態 SQL 功能來實現。具體實現方法如下:
public interface YourMapper {
List<YourDataType> selectDataByTableName(@Param("tableName") String tableName);
}
<choose>
和 <when>
標簽來實現根據不同條件選擇不同的表名:<select id="selectDataByTableName" resultType="YourDataType">
SELECT * FROM
<choose>
<when test="tableName == 'table1'">
table1
</when>
<when test="tableName == 'table2'">
table2
</when>
</choose>
</select>
YourMapper yourMapper = sqlSession.getMapper(YourMapper.class);
List<YourDataType> data = yourMapper.selectDataByTableName("table1");
通過以上步驟,就可以實現在 MyBatis 中根據動態表名進行查詢數據的功能。