Hallo,
ich möchte in einer Postgres DB “7.4.6” eine Tabelle anlegen
und zwar so …
CREATE TABLE XXL (
ShortNames VARCHAR(80) REFERENCES DayOnGoing(ShortNames),
.
.
.
StartLesson MyTimeFormat,
EndLEsson MyTimeFormat
)
Wobei MyTimeFormat…
CREATE TYPE MyTimeFormat AS (
TagImMonat ZeitangabeTagImMonat,
TMSeperator ZeitangabeSeparator,
MonatImJahr ZeitangabeMonatImJahr,
MJSeperator ZeitangabeSeparator
)
;
und ZeitangabeTagImMonat sind Domain Kreationen.
Mein Problem
ERROR: column “StartLesson” has composite type MyTimeFormat
Meine Frage
Geht das in “7.4.6” nicht?
Gruss
Frank