比如想要生成类似如下的表格 mysql> select student.*,sc.cno,course.cname,sc.grade,course.cpno,course.ccredit from student,sc,course where student.sno=sc.sno and sc.cno=course.cno; 第一种直接生成: mysql> create table temp(select student.*,sc.cno,course.cname,sc.grade,cour…