I am using an XML file in my application. I want to write my query string into the XML file and then read it from the application side. My query is like that:
select * from employee
where salary < 10000
I faced this problem: when I write this character '<'
I got an error. How can I use it in my XML? Thanks.