Ansicht LehrerAbteilungen
Abfrage
SQL
SELECT
"Mandant", "ID" AS "Lehrer", "Abteilung1" AS "Abteilung"
FROM
"Lehrer"
WHERE
NOT "Abteilung1" IS NULL
UNION
SELECT "Mandant", "ID" AS "Lehrer", "Abteilung2" AS "Abteilung"
FROM "Lehrer"
WHERE NOT "Abteilung2" IS NULL
UNION
SELECT "Mandant", "ID" AS "Lehrer", "Abteilung3" AS "Abteilung"
FROM "Lehrer"
WHERE NOT "Abteilung3" IS NULL
Spalten
Diese Ansicht hat 3 Spalten.
Mandant
-
Verweis auf Tabelle Mandanten
Lehrer
-
Verweis auf Tabelle tblLehrer
Abteilung
-
Verweis auf Tabelle Abteilungen