10 lines
182 B
SQL
10 lines
182 B
SQL
select anrede,
|
|
vorname,
|
|
nachname,
|
|
strasse,
|
|
plz,
|
|
ort
|
|
from mieter
|
|
where einzug < curdate() and
|
|
(auszug is null or auszug > curdate())
|