gpt4 book ai didi

sql - MySQL:按字段计算行数

转载 作者:可可西里 更新时间:2023-11-01 07:47:04 26 4
gpt4 key购买 nike

表中的所有行都有一个 type 字段,该字段为 0 或 1。

我需要在一个查询中计算带有 0 和 1 的行。所以结果应该是这样的:

type0 | type1
------+------
1234 | 4211

如何实现?

最佳答案

select type, count(type) from tbl_table group by type;

关于sql - MySQL:按字段计算行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2512272/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com