これが私のテーブルの次のレコードです:(私は現在SQLServer2008を使用しています)
年レベル
YearLevelID YearLevelName
1 Freshman
2 Sophomore
3 Junior
4 Senior
学生
StudentID FirstName LastName
1 John Doe
2 Peter Pan
3 Mark Twain
達成されたレベル
SSID StudentID YearLevelID
1 1 2
2 1 1
3 1 3
4 2 2
5 3 1
6 2 1
出力は次のようになります。
FullName YearLevelName
John Doe Junior
Peter Pan Sophomore
Mark Twain Freshman