Hello. I have a table spt_Intersections with a geometry column called polygon that has just one row of data. The geometry returns GEOMETRYCOLLECTION from GeometryType.
I want to split this collection into its simple geometries so I try:
select ElementaryGeometries( 'spt_Intersections', 'polygon', 'spt_Output', 'pk', 'polyID');
Neither pk or polyID are present in spt_Intersections.
Yet I get an invalid args error.
I’ve read the documentation, googled it and AI’ed it but I can’t see where I am going wrong.
Any help please?
Regards, Chris