gpt4 book ai didi

SQL 总行数

转载 作者:行者123 更新时间:2023-12-03 18:18:21 25 4
gpt4 key购买 nike

我需要选择行数:

select 
int_re_usu as Qtd_Respostas
from
tb_questionario_voar_resposta
group by
int_re_usu

它返回:
1- 687
2- 375076
3- 339012
4 -314083
5 -52741
6 -339977
7- 276041
8- 373304
9 - 339476
10- 51095
11- 270365
12 - 6
13 - 308670
14 -305232
15 - 85868
16 - 9893
17 -300598
18 - 300572
19 - 275889
20 - 6092
21 - 80092
22 - 307104
23 -273393

我想选择数字 23,即总 row_count。

有什么想法吗?

最佳答案

使用@@RowCount

select int_re_usu as Qtd_Respostas from tb_questionario_voar_resposta  group by int_re_usu
Select @@RowCount

或者
使用派生表
Select Count(*) from 
(select int_re_usu as Qtd_Respostas from tb_questionario_voar_resposta group by int_re_usu) q1

关于SQL 总行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4198619/

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