Heim  >  Artikel  >  Datenbank  >  mybatis查询mysql的时间段

mybatis查询mysql的时间段

WBOY
WBOYOriginal
2016-06-07 15:58:302653Durchsuche

mapper文件的写法为:(模糊查询,查询时间段) if test=com_name!=null and com_name!=and sc.com_name like CONCAT(CONCAT(%,#{com_name}),%)/ifif test=check_begin_date!=null and check_begin_date!=![CDATA[ and DATE_FORMAT(tcb.check_begin_date, %Y

mapper文件的写法为:(模糊查询,查询时间段)

                <if test="com_name!=null and com_name!=&#39;&#39;">
			and sc.com_name like CONCAT(CONCAT(&#39;%&#39;,#{com_name}),&#39;%&#39;)
		</if>
		<if test="check_begin_date!=null and check_begin_date!=&#39;&#39;">
		<![CDATA[
			  and DATE_FORMAT(tcb.check_begin_date, &#39;%Y-%m-%d&#39;) >=  DATE_FORMAT(#{check_begin_date}, &#39;%Y-%m-%d&#39;)
		]]>
		</if>
		<if test="check_end_date!=null and check_end_date!=&#39;&#39;">
		<![CDATA[
			  and DATE_FORMAT(tcb.check_begin_date, &#39;%Y-%m-%d&#39;) <=  DATE_FORMAT(#{check_end_date}, &#39;%Y-%m-%d&#39;)
		]]>
		</if>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn