Hi guys,
I would like create a layer, from a table , where the geometry field (Shape) come from a layer using a Join.
My table have a key, where can use with a layer with same field (key).
The 'Add Join' tool, get all field from layer, but, not add the geometry.
Have a tool in ArcGIS Pro for add the geometry in a table, to create a layer ?
Or
I can use a SQL and the result i define how a layer ?
I have a lot of tables, and I need the geometries from a only layer.
A SQL can be this:
SELECT t.id_city, t.name_seller, t.total, l.Shape
FROM cities_salles t
INNER JOIN cities l ON t.id_city = l.id