如何使用少于<并且大于> metamug XML中的符号

时间:2017-04-08 11:59:25

标签: sql xml metamug

如何使用少于"<"并且大于">"元数据中的符号资源文件和SQL控制台中的XML

select * 
from tbl_reservation 
where fare > 100 
  and fare < 50000

2 个答案:

答案 0 :(得分:5)

首先<>在SQL控制台中运行

< > With

没有< > Without

但要在resource文件中使用它们,您必须按照下表逃脱它们 enter image description here
更多as per these guideline
所以你的查询将是

select * from tbl_reservation where fare lt 100 and fare gt 50000

答案 1 :(得分:4)

你应该使用XML Escape Characters

所以,

select * from tbl_reservation where fare gt 100 and fare lt 50000