1.表结构: /*学生*/ create table student( sno int not null primary key, sname ) ); /*课程*/ create table center( cno int not null primary key, cname ) ); /*分数*/ create table sgrade( sno int , cno int , sgrade int ); 2.插入数据: ,'a'); ,'b'); ,'c') ,'aa'); ,'bb')…