Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In mysql we can check the less than condition by using '>' symbol but in XML files in java, how can I check that condition when we are writing query? Please suggest me. Its very helpful

Thanks, Vara Kumar PJD

share|improve this question
2  
You can check the "less than" condition by using the "greater than" symbol? That's strange, I can't. – Tomalak Jan 11 '11 at 10:47
1  
This question doesn't seem to have anything to do with MySQL or Java. Instead it's about XML only. – Joachim Sauer Jan 11 '11 at 11:33

2 Answers

How about escaping the character with

>

?

share|improve this answer
ok, for grater than or equal ? – vara kumar Jan 11 '11 at 10:46
just replace the > with > and if you need a >= use >= – flob Jan 11 '11 at 10:49
or use &lt; for < if you want to check for the less condition – flob Jan 11 '11 at 10:51

Have you tried the CDATA tag?

<![CDATA[literals]]>

`All text in an XML document will be parsed by the parser.

But text inside a CDATA section will be ignored by the parser.`

look at http://www.w3schools.com/xml/xml_cdata.asp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.