MyBatis中如何查詢某個時間段內的數據

如何查詢某個時間段內的數據

1、當使用SQL語句查詢某個時間段的數據時

我們很自然的會想到使用between…and..來操作,但是如果使用between…and… 這個方法來查詢某個時間段的數據時是需要傳入兩個參數的,一個是起始時間,另一個是結束時間,且兩個參數必須要同時存在才能使用between…and…,而我們希望的是隻傳入一個參數(起始時間或者結束時間)就能進行查詢。

但是在使用MyBatis時如果隻傳入一個參數,則相應的SQL語句是不會執行的,所以不能使用between…and… 來進行某個時間段數據的查詢。

2、可以使用" >= … AND … <=" 來解決

例如:

SELECT * FROM o_info WHERE create_date >= '2019-03-10 17:04:04' AND create_date  <= '2019-03-15 17:04:28';

但是若要在MyBatis中使用,有一點需要註意:在MyBatis中使用">"和"<"時會提示"The content of elements must consist of well-formed character data or markup."這個錯誤,原因是使用的">"和"<"不符合xml的書寫規范,所以需要把">"和"<"使用<![CDATA[ ]]>標簽括起來才行。

使用<![CDATA[ ]]>標簽後的代碼:

<if test="beginDate != null and beginDate != ''">AND stock_bill.bill_date <![CDATA[>=]]> #{beginDate}</if>
<if test="endDate != null and endDate != ''">AND stock_bill.bill_date <![CDATA[<=]]>#{endDate}</if>

這樣就可以實現隻選擇開始時間或者隻選擇結束時間,同時選擇開始時間和結束時間來進行查詢瞭。

3、如果查詢時出現異常提示

### Error querying database.  Cause: java.lang.IllegalArgumentException: invalid comparison: java.util.Date and java.lang.String 

是因為傳入的參數類型是日期類型,但是在<if test="beginDate != null and beginDate != ''">和<if test="endDate != null and endDate != ''">卻用這個日期類型的參數與空字符串進行瞭比較,所以出現瞭程序運行時異常,解決方法是將與空字符串比較的判斷去掉,隻保留非空判斷即可。

4、最終的代碼:

 <if test="beginDate != null">AND stock_bill.bill_date <![CDATA[>=]]> #{beginDate}</if>
 <if test="endDate != null">AND stock_bill.bill_date <![CDATA[<=]]>#{endDate}</if>

Mybatis查詢日期范圍

將日期時間,轉換為字符串

select
s.*
from BIZ_ASSAY_ORDER_SAMPLE s
LEFT JOIN BIZ_ASSAY_ORDER o on o.ID=s.ORDER_ID
WHERE 1=1
<if test="status !=null and status !=''">
    AND s.RECORD_STATUS=#{status}
</if>
<if test="sampleNo !=null and sampleNo !=''">
    AND s.SAMPLE_NO LIKE '%'||#{sampleNo}||'%'
</if>
<if test="orderNo !=null and orderNo !=''">
    AND o.ORDER_NO LIKE '%'||#{orderNo}||'%'
</if>
<if test="sampleBizModelId !=null and sampleBizModelId !=''">
    AND s.SAMP_BIZ_MODE_ID=#{ sampleBizModelId }
</if>
<if test="statusFlag !=null and statusFlag !=''">
    AND s.STATUS_FLAG=#{ statusFlag }
</if>
<if test="fromDate != null and fromDate !=''">
    and to_char(o.ORDER_DATE,'yyyy-MM-dd') >=  #{fromDate}
</if>
<if test="toDate != null and toDate !=''">
    and to_char(o.ORDER_DATE,'yyyy-MM-dd') <=  #{toDate}
</if>

關鍵代碼

<if test="fromDate != null and fromDate !=''">
    and to_char(o.ORDER_DATE,'yyyy-MM-dd') >=  #{fromDate}
</if>
<if test="toDate != null and toDate !=''">
    and to_char(o.ORDER_DATE,'yyyy-MM-dd') <=  #{toDate}
</if>

或者

將字符串,轉換為日期時間

SELECT
<include refid="Base_Column_List"/>
FROM BIZ_DAILY_PLAN dp
LEFT JOIN DIC_TEST_OBJECT tb ON dp.TEST_OBJECT_ID=tb.ID
LEFT JOIN DIC_SAMPLE_BIZ_MODEL bm ON dp.SAMP_BIZ_MODE_ID=bm.ID
LEFT JOIN RES_LABORATORY l ON dp.LABORATORY_ID=l.ID
WHERE 1=1 AND dp.RECORD_STATUS = ${@cn.com.hwasunsoft.lims.core.enums.RecordStatusEnum@VALID.getValue()}
<if test="dailyPlanStatus !=null and dailyPlanStatus !=''">
    AND dp.CONFIRMATION_STATUS=#{dailyPlanStatus}
</if>
<if test="status !=null and status !=''">
    AND dp.RECORD_STATUS=#{status}
</if>
<if test="labId !=null and labId !=''">
    AND dp.LABORATORY_ID=#{labId}
</if>
<if test="fromDate !=null and fromDate !=''">
    AND dp.PLAN_DATE >= TO_DATE(#{fromDate},'yyyy-mm-dd')
</if>
<if test="toDate !=null and toDate !=''">
    AND TO_DATE(#{toDate},'yyyy-mm-dd') >= dp.PLAN_DATE
</if>

關鍵代碼

<if test="fromDate !=null and fromDate !=''">
    AND dp.PLAN_DATE >= TO_DATE(#{fromDate},'yyyy-mm-dd')
</if>
<if test="toDate !=null and toDate !=''">
    AND TO_DATE(#{toDate},'yyyy-mm-dd') >= dp.PLAN_DATE
</if>

日期等於某天

直接把大於、小於號,改為等於號

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: