1. 程式人生 > >mybatis的日期查詢與欄位的模糊查詢例子

mybatis的日期查詢與欄位的模糊查詢例子

查詢兩個日期之前的日期內容的where語句
<if test="w.start != null and w.start != ''">AND checktime <![CDATA[>]]> #{w.start}</if>
<if test="w.end != null and w.end != ''">AND checktime <![CDATA[<]]>#{w.end}</if>

查詢某個欄位的模糊查詢
<if test="w.titles != null and w.titles !=''">and title LIKE  CONCAT(CONCAT('%', #{w.titles}), '%') </
if>