我有三张桌子。设计就像
学生桌
create table student (studID int not null primary key AUTO_INCREMENT,
StudName varchar(20),
Parent varchar(20),
PhoneNo int not null
)
课桌设计
create table Course (CID int not null primary key AUTO_INCREMENT,
CName varchar(20))
stud课程表设计
create table studCourse(studID int not null
,CID int not null
)
我如何制作一个显示学生姓名和他正在学习的课程的视图?