|
Hi, I have areas around points (285) where I have identified the nearest point for each area. I am trying to join the areas linked to each point into single areas using Unionall. I currently have the following SQL
SELECT * INTO [Temp2] FROM (SELECT Plant, Unionall(GEOM([ID])) FROM [SA1_2021_AUST_GDA2020 Drawing] GROUP BY Plant)
It creates the Temp table with a single field called 'Column' that contains a geom with branches and coords for each 'Plant'. The field (one example) when opened in table view shows the following <geom,area, branches, 2, coords 1333> I have tried copying the 'Temp' and 'paste as drawing' but that process requires a Lat/long to be specified. How do I get the query result to display as a drawing or what should I be doing with my SQL? Regards, HG
|