如何找到計數表在不同的行嗎

a1107849370發表於2018-10-26

我想從兩個不同的表一個表包含資料總學生另一個表包含特定的學生如何獲取學生資訊 我想顯示 name , code, totalstudent and no.of ngo student

select 
       a.name as name, a.school_code as CODE, 
       a.num_of_student as totalstudent,
       b.COUNT (ngo_student_name) as total_student 
from 
      ngo_student as a 
      INNER JOIN student_details as b on a.name=b.ngo_student_name 
GROUP BY
      b.ngo_student_name

請指導我該查詢顯示錯誤 謝謝


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559515/viewspace-2217694/,如需轉載,請註明出處,否則將追究法律責任。

相關文章