Mercurial > lada > lada-server
annotate db_schema/stammdaten_fill_verwaltungsgrenze.sql @ 1290:14876c62f692
Push down refreshing of persisted objects deeper into the stack.
There are more places besides creation of Probe objects where it is
useful to return within the response what has been really written to
the database (including modifications by the database itself) instead
of merely the request data, e.g. creation of Ort objects, which
includes database generated ort_ids.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Wed, 08 Feb 2017 18:02:05 +0100 |
parents | f094aca05cf2 |
children |
rev | line source |
---|---|
1249
f094aca05cf2
Avoid having to handle missing shapes.
Tom Gottfried <tom@intevation.de>
parents:
1188
diff
changeset
|
1 INSERT INTO stammdaten.verwaltungsgrenze(gem_id, shape) |
f094aca05cf2
Avoid having to handle missing shapes.
Tom Gottfried <tom@intevation.de>
parents:
1188
diff
changeset
|
2 SELECT |
1188
1bc8ab13e1f7
redesign stammdaten.verwaltungseinheit
Michael Stanko <mstanko@bfs.de>
parents:
diff
changeset
|
3 verwaltungseinheit.id, |
1bc8ab13e1f7
redesign stammdaten.verwaltungseinheit
Michael Stanko <mstanko@bfs.de>
parents:
diff
changeset
|
4 gem_utm.geom |
1249
f094aca05cf2
Avoid having to handle missing shapes.
Tom Gottfried <tom@intevation.de>
parents:
1188
diff
changeset
|
5 FROM |
1188
1bc8ab13e1f7
redesign stammdaten.verwaltungseinheit
Michael Stanko <mstanko@bfs.de>
parents:
diff
changeset
|
6 stammdaten.verwaltungseinheit |
1249
f094aca05cf2
Avoid having to handle missing shapes.
Tom Gottfried <tom@intevation.de>
parents:
1188
diff
changeset
|
7 JOIN geo.gem_utm ON verwaltungseinheit.id = gem_utm.ags; |