Skip to content
Snippets Groups Projects
Commit b0b5c029 authored by Peter Gerwinski's avatar Peter Gerwinski
Browse files

Korrektur der Musterlösung zu Aufgabe 1, 11.12.2024

parent 5f9c9dd2
No related branches found
No related tags found
No related merge requests found
......@@ -26,10 +26,12 @@ CREATE TABLE module (
CREATE TABLE score (
id INTEGER AUTO_INCREMENT PRIMARY KEY,
stud_id INTEGER FOREIGN KEY REFERENCES stud (id),
module_id INTEGER FOREIGN KEY REFERENCES module (id),
stud_id INTEGER,
module_id INTEGER,
module_score INTEGER,
<weitere Daten: Versuch, Timestamp, ...>
<weitere Daten: Versuch, Timestamp, ...>,
FOREIGN KEY (stud_id) REFERENCES stud (id),
FOREIGN KEY (module_id) REFERENCES module (id)
);
Achtung: In Wirklichkeit können sich die ECTS-Punkte für ein Modul auch ändern.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment