如何找到计数表在不同的行吗

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
请指导我该查询显示错误 谢谢

以上是关于如何找到计数表在不同的行吗的主要内容,如果未能解决你的问题,请参考以下文章

SQL(PLSQL),如何选择不同但计数> 1

更新异常。 Mysql sql不同的行影响计数

查询用于创建分组、聚合和过滤的行集的不同计数

DBGrid通过代码突出显示所定位的行吗?

如果列中的不同计数达到 10,则只返回 true/false,而不是检查 spark 中的行数

如何在R中的不同表中找到相等的行?