我试图加入2个表格,其中一张可以链接,但我只想把“一”一栏数据放在一行中,在所有其他各行中,这种数据应一律无效。 因此:
TEACHER
---------
TeacherID
TeacherBiography
.
.
.
STUDENT
-----------
TeacherID
StudentFName
StudentLName
.
.
.
例: 你们想让所有第一名学生Joe,通过教师培训加入教师队伍,但限制退学结果,以便教师数据不会在每行复课。 原因是教师比照率很高;我需要回来,但不是每行。
因此,一些样本产出应当像:
------------------------------------------------
StudentFName | StudentLName | TeacherID | TeacherBiography
------------------------------------------------
Joe | Smith | 1 | long biography for teacher 1..
Joe | Jones | 2 | long biography for teacher 2..
Joe | Michaels | 1 | null
Joe | Rogers | 3 | long biography for teacher 3..
Joe | Washington | 1 | null
.
.
.
.
So in the case of Michaels and Washington the TeacherBiograph (and all other teacher columns) is null because the data was already returned in the Smith row.
我如何这样做?
- 法 国