第一種方法:
用了轉義字元把》和《替換掉,然後就沒有問題了。
select*from test where1=
1and start_date <=
current_date
and end_date >=
current_date
附:xml轉義字元
小於號
大於號和
單引號雙引號
第二種方法:
因為這個是xml格式的,所以不允許出現類似「>」這樣的字元,但是都可以使用符號進行說明,將此類符號不進行解析
你的可以寫成這個:
when min(starttime)<='12:00' and max(endtime)<='12:00'
]]>
mybatis在xml檔案中處理大於號小於號的方法
背景 在mybatis對映檔案中書寫sql語句,where子句中經常會用到大於小於號,如果直接用大於小於號就會報錯 如果用小於號會報錯誤如下 org.apache.ibatis.builder.builderexception error creating documentinstance.caus...
Mybatis在xml檔案中處理大於號小於號的方法
第一種方法 用轉義字元把 和 替換掉,就沒有問題了。if test starttime null and order date if if test endtime null and order date if 注意下,這裡的starttime,endtime都是date型別的 附 xml轉義字元 ...
mybatis在xml檔案中處理大於號小於號的方法
if 二,轉義,同樣可以可以和等號 一起來使用,來表示大於等於,小於等於等。例如 and authority if mybatis在xml檔案中處理大於號小於號的方法 第一種方法 用了轉義字元把 和 替換掉,然後就沒有問題了。select from test where 1 1 and start ...