mysql group by分组查询后 查询个数
2个方法随便你选
<pre>
select count(distinct colA) from table1;
</pre>
<pre>
select count(*) from (select colA from table1 group by colA) gyd;
</pre>
用了子查询一定要用别名
mysql group by分组查询后 查询个数
2个方法随便你选
<pre>
select count(distinct colA) from table1;
</pre>
<pre>
select count(*) from (select colA from table1 group by colA) gyd;
</pre>
用了子查询一定要用别名
上一篇:linux shell习题
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M