Re: [GENERAL] Simple way to load xml into table

2015-10-15 Thread David G. Johnston
On Thu, Oct 15, 2015 at 1:38 PM, Emi wrote: > Hello, > > For psql 8.3, is there a simple way to load xml file into table please? > > E.g., > > > True > test1 > e1 > > > false > test2 > > > Results: > t1 (c1 text, c2 text, c3 text): > > c1| c2 | c3 > ---

Re: [GENERAL] Simple way to load xml into table

2015-10-15 Thread Rob Sargent
On 10/15/2015 11:38 AM, Emi wrote: Hello, For psql 8.3, is there a simple way to load xml file into table please? E.g., True test1 e1 false test2 Results: t1 (c1 text, c2 text, c3 text): c1| c2 | c3 - true| test1 | e

[GENERAL] Simple way to load xml into table

2015-10-15 Thread Emi
Hello, For psql 8.3, is there a simple way to load xml file into table please? E.g., True test1 e1 false test2 Results: t1 (c1 text, c2 text, c3 text): c1| c2 | c3 - true| test1 | e1 false | test2 | null .. Tha