Ich habe folgendes Problem und komme nicht weiter. Ich nutze Debian und XAMPP 1.8.1.
Vielleicht kann mir hier jemand helfen, wieso folgende kleine MySQL-Übung ständig fehlschlägt...
Das Anlegen der ersten beiden Tabellen funktioniert:
Code: Alles auswählen
create table artist
(artist_id int PRIMARY KEY,
name varchar(50));
Code: Alles auswählen
create table sort
(sort_id tinyint PRIMARY KEY,
name varchar(20));
Code: Alles auswählen
create table cd
(cd_id int PRIMARY KEY,
sort_id tinyint NOT NULL,
title varchar(30),
rec_method char(3) check rec_method in ('AAD','ADD','DDD'),
FOREIGN KEY (sort_id) REFERENCES sort );
Was mache ich falsch?
DANKE schon jetzt für eure Mühe.