SQL Server 2000,返回具有相同值的单元格数量

发布于 2024-10-19 10:52:20 字数 277 浏览 1 评论 0原文

1
1
1
2
2
2
2
3

例如,我在表中有以下数据,现在我想对具有相同值的行进行计数,这样我将得到:

1 = 3 (cells with the value of 1 returns a count of 3)
2 = 4 (...)
3 = 1 (...)

我想得到这样的结果,因为我想在 html 表上创建动态行跨度...任何帮助将不胜感激..顺便说一下我正在使用php和mssql server 2000..

1
1
1
2
2
2
2
3

For example I have the following data in a table, now I want to count rows with the same values so that I will have:

1 = 3 (cells with the value of 1 returns a count of 3)
2 = 4 (...)
3 = 1 (...)

I want to get results like this because I want to create a dynamic rowspan on an html table... Any help would be appreciated.. by the way I am using php and mssql server 2000..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み格子的夏天 2024-10-26 10:52:21
 select count(*) from table where field=value;

编辑:

SELECT SUM(CASE WHEN gender = 'm' THEN 1 ELSE 0 END) m
 , SUM(CASE WHEN gender = 'f' THEN 1 ELSE 0 END) f
 FROM members;

此线程可能有帮助:

http://forums.mysql.com/read。 php?20,397163,397178

 select count(*) from table where field=value;

Edit:

SELECT SUM(CASE WHEN gender = 'm' THEN 1 ELSE 0 END) m
 , SUM(CASE WHEN gender = 'f' THEN 1 ELSE 0 END) f
 FROM members;

This thread might help:

http://forums.mysql.com/read.php?20,397163,397178

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文