I forgot ...
From: Norbert_Paul <norbertpauls_spambin_at_yahoo.com>
Date: Mon, 02 Feb 2015 19:22:01 +0100
Message-ID: <maof76$asr$1_at_dont-email.me>
Date: Mon, 02 Feb 2015 19:22:01 +0100
Message-ID: <maof76$asr$1_at_dont-email.me>
Norbert_Paul wrote:
> CREATE TABLE Monomials(
> id INTEGER NOT NULL
> degree INTEGER NOT NULL,
> coefficient <YourFieldOfChoice> NOT NULL,
> PRIMARY KEY(id, degree),
> FOREIGN KEY(id) REFERENCES Polynomials(id)
> );
CREATE TABLE Monomials(
id INTEGER NOT NULL
degree INTEGER NOT NULL,
coefficient <YourRingOfChoice> NOT NULL,
PRIMARY KEY(id, degree),
FOREIGN KEY(id) REFERENCES Polynomials(id)
);
Received on Mon Feb 02 2015 - 19:22:01 CET
