Code:
drop table t_speichern_ja_aber_nicht_georg_orwell;
create table t_speichern_ja_aber_nicht_georg_orwell (
upd timestamp
,cre timestamp
,id int unsigned
,nachname varchar(50) not null
,vorname varchar(50)
,geburtstag date
,PRIMARY KEY (id)
,KEY key2 (nachname, vorname)
);