如何找到计数表在不同的行吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何找到计数表在不同的行吗相关的知识,希望对你有一定的参考价值。
我想从两个不同的表一个表包含数据总学生另一个表包含特定的学生如何获取学生信息 我想显示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
请指导我该查询显示错误 谢谢
以上是关于如何找到计数表在不同的行吗的主要内容,如果未能解决你的问题,请参考以下文章