mysql/mariadb将选择查询的结果重新生成一张新表格

比如想要生成类似如下的表格 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
相关文章
相关标签/搜索