Hello everyone,
I have a problem inserting xml file. I have to create directory and passing from it. But my xml file like this:
<?xml version = "1.0" encoding="utf-8"?>
<a> <date>20221011</date></a>
<b>
<b1>
<field1>092010</field1>
</b1>
<b1>
<field1>093456</field1>
</b1>
....
</b>
I want to import <field1>'s data into my table, not <a>'s. But of course there's an error for multiple roots. I want to remove or delete <a> tag or add <a> and <b> tags into new root.
What should I do?
Thanks,
Daphne.