阅读量:5
在MyBatis中查询datetime类型数据,可以使用Java中的Date类型来表示。在Mapper文件中,可以使用以下方法来查询datetime类型的数据:
- 使用parameterType指定参数类型为Date,然后在SQL语句中使用#{参数名}来引用参数:
<select id="selectByDateTime" parameterType="java.util.Date" resultType="YourResultType"> SELECT * FROM your_table WHERE your_datetime_column = #{dateTime} select>
- 使用parameterType指定参数类型为Map,然后在SQL语句中使用#{key}来引用参数:
<select id="selectByDateTime" parameterType="java.util.Map" resultType="YourResultType"> SELECT * FROM your_table WHERE your_datetime_column = #{dateTime} select>
在Java代码中,传入Date类型的参数或Map类型的参数,然后调用对应的Mapper方法即可完成查询操作。