我有兩個表,一個包含學生id和couse。第二個包含couses,日期和時間。現在我想得有病程上第二個表顯示具有相同的日期和時間我有兩個表格,一個包含學生id和couse。第二個包含couses,日期和時間
表1
Student ID Cousecode
student 1 Couse A student 1 Couse B student 1 Couse C student 1 Couse D student 1 Couse E student 1 Couse F student 1 Couse G student 2 Couse A student 2 Couse B student 2 Couse C student 2 Couse D student 2 Couse E
student 2 Couse F
表2
`Cousecode date time
Couse A 2015-05-04 Mor
學生的數量` 所以我想運行一個查詢,它將循環遍歷表1和表2來計算正在註冊的學生數量職高因爲課程實驗出現在表2
我已經運行此查詢 SELECT table1.student_id, table1.CourseCode,table2.* FROM table1 RIGHT JOIN table2 ON table1.CourseCode = table2.cousecode WHERE table1.CourseCode = 'Couse B' AND table2.date='2015-05-04' AND table2.time='Mor';
但不工作
你想要一個課程的學生人數?或者是其他東西 ... – aphextwix