Lab5 - 22 2 16
Lab5 - 22 2 16
Lab5 - 22 2 16
mysql> create table perform(musid char(11) not null, instid char(11) not
null, functiondate date not null, function char(200) not null, primary
key(musid,instid,functiondate), foreign key(musid) references
musician(musicianid) on delete cascade, foreign key(instid) references
instrument(instrumentid) on delete cascade);
Query OK, 0 rows affected (0.11 sec)
mysql> notee;