Non sono sicuro del motivo per cui hai taggato un mysql
domanda come db2
. Ad ogni modo, la documentazione MySQL
afferma:
Quindi aggiungi un indice nel Geburtsdatum
colonna:
CREATE TABLE patient(
Name varchar(255),
Geburtsdatum date,
INDEX (Geburtsdatum),
CONSTRAINT pk_patient PRIMARY KEY (Name,Geburtsdatum)
);