1
SELECT building.obj_id,
2
building.house_number,
3
building.location_name,
4
building.perimeter_geometry,
5
building.reference_point_geometry,
6
connection_object.fk_dataowner,
7
connection_object.fk_provider,
8
connection_object.fk_wastewater_networkelement,
9
connection_object.identifier,
10
connection_object.last_modification,
11
connection_object.remark,
12
connection_object.sewer_infiltration_water_production
13
FROM (tww_od.building
14
LEFT JOIN tww_od.connection_object ON (((connection_object.obj_id)::text = (building.obj_id)::text)));