mysql:只用一条sql语句,如何查出一个表里,不同条件对应的数据条数

发布网友 发布时间:2022-04-24 07:15

我来回答

2个回答

热心网友 时间:2022-04-08 12:09

mysql只用一条sql语句查出一个表里不同条件对应的数据条数的步骤如下:

我们需要准备的材料分别是:电脑、sql查询器。

1、首先,打开sql查询器,连接上相应的数据库表,例如stu2表。

2、点击“查询”按钮,输入:

select count(*) from stu2 where sex=1 and age=2

union all

select count(*) from stu2 where sex=1 and age=5

union all

select count(*) from stu2 where sex=1 and age=10

3、点击“运行”按钮,此时能只通过一条sql高效查询结果。

热心网友 时间:2022-04-08 13:27

看一下这个SQL

select
sum(
if((sex = 1 and age = 2),1,0)
),
sum(
if((sex = 1 and age = 5),1,0)
),
sum(
if((sex = 1 and age = 10),1,0)
)
from a_test

 这个SQL现在就是得出的这个结果

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com