" characters in metamug XML in resource file an...">

How to use less than <and more> characters in XML meta

How to use less than "<" and more than ">" characters in metamug XML in resource file and SQL console

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

      

+3


source share


2 answers


First, <

and >

work in the SQL console

FROM <

>

FROM

Without <

>

Without



But to use them in a file resource

you will have to avoid them according to the table below For more according to these guidelines So your query will beenter image description here

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

      

+3


source


you have to use XML Escape Characters :

So,



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

      

+3


source







All Articles