group by
Posted vanjs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了group by相关的知识,希望对你有一定的参考价值。
select
//tsage, 错误
//sum(tsage), 正确
性别=tsgender,
人数=count(*)
from Tb_Student
group by tsgender
当使用分组语句 group by 或者聚合函数时,在select的查询列表中不能包含其他的列名,除非该列同时也出现在了group by字句中,或者该列也包含在了聚合函数中。
以上是关于group by的主要内容,如果未能解决你的问题,请参考以下文章
《SQLite3 — limitorder bygroup byhavingdistinct》