vorstellung

This commit is contained in:
2021-02-12 20:57:09 +01:00
parent 1250ecc7fc
commit 4c82081b9e
8 changed files with 1350 additions and 0 deletions

View File

@ -0,0 +1,16 @@
select m.anrede as anrede,
m.vorname as vorname,
m.nachname as nachname,
m.adresszusatz as adresszusatz,
m.strasse as strasse,
m.plz as plz,
m.ort as ort,
w.wohnungsnummer as wohnung
from mieter m,
objekt o,
wohnung w
where m.einzug < curdate() and
(m.auszug is null or m.auszug > curdate()) and
m.wohnung = w.id and
w.objekt = o.id and
o.shortname = 'Heisinger Str. 346'