在Navicat中 ≥ 、≤都是没事的
AND product_price_min >=1
AND product_price_max <=8800;
sql写完之后,将sql复制到xml中 结果就报 Tag name expected… '< >'大于 小于 在xml中是标签,所以在xml中要转义下
1、.在 XML 元素中,"<" 和 “>” 是非法的。
相当于要写成
AND product_price_min >=1
AND product_price_max <=8800;