 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Using > operators in SAP HANA
You probably need to use cdata sections in your query. The term CDATA means, Character Data. CDATA is defined as blocks of text that are not parsed by the parser, but are otherwise recognized as markup. The predefined entities such as <, >, and & require typing and are generally difficult to read in the markup.
Following is the syntax for CDATA section −
<![CDATA[ characters with markup ]]>
You have to wrap your queries in CDATA as shown below −
<root> <query> <![CDATA[ select vbeln from vbpa where posnr > 50. ]]> </query> </root>
For more details about XML CDATA, you can refer below link −
https://www.tutorialspoint.com/xml/xml_cdata_sections.htm

Advertisements
 