用sql语句‘创建查询学生的学号,姓名,所在系,课程号,课程名,课程学分的视图’

2024-11-05 20:21:11
推荐回答(3个)
回答(1):

create view <视图名>(学号,姓名,所在系,课程号,课程名,课程学分)
as
selecet student.sno,sname,sdept,course.cno,cname,credit
from student,course,sc
where student.sno=sc.sno and
sc.cno=course.cno

回答(2):

楼上正解,这问题问的很不清楚。回答的很清楚,哈哈

回答(3):

楼上正解