如何查询mysql一个字段的最大值的总和
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查询mysql一个字段的最大值的总和相关的知识,希望对你有一定的参考价值。
正常查询:select count(jishu) from A where jishu=4 and danwei=3
结果为:65
jishu=4 是手动写的,其实我想要这个字段最大的值
我的写法:
1 select count(jishu) from A where jishu =(select max(jishu) from A where danwei =3 )
2 select count(jishu) from A where jishu =(select max(jishu) from A ) and danwei =3
以上2个都不对
求正确写法!感谢~
以上是关于如何查询mysql一个字段的最大值的总和的主要内容,如果未能解决你的问题,请参考以下文章