skip to Main Content

Postgresql – pandas.to_xml() with nested xml blocks

I create table in PostgreSQL and insert to table nested XML(xml_part column): CREATE TABLE text_xml ( id numeric, xml_part XML ); insert into text_xml values (1, '<note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Dont forget me this weekend!</body></note>'); insert into text_xml values (2, '<note><to>Tove</to><from>Alex</from><heading>Reminder</heading><body>Dont forget me this…

VIEW QUESTION
Back To Top
Search