Skip to content

Commit e836732

Browse files
author
SmartLinli
committed
update
1 parent b5604b0 commit e836732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QuickDemo/6.Table_GridView/Table_GridView/frm_CourseSelection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private void LoadCourses()
3434
sqlHelper.QuickFill(commantText, this.dgv_AllCourses);
3535
commantText =
3636
$@"SELECT C.*,IIF(SS.Score IS NULL,'可退选','不可退') AS Status
37-
FROM tb_StudentScore AS SS JOIN tb_Course AS C ON SS.CourseNumber=C.Number
37+
FROM tb_Course AS C JOIN tb_StudentScore AS SS ON SS.CourseNumber=C.Number
3838
WHERE SS.StudentNumber='{StudentNumber}';";
3939
sqlHelper.QuickFill(commantText, this.dgv_SelectedCourses);
4040
}

0 commit comments

Comments
 (0)