读书人

文章分组统计后的在的到总行数为什

发布时间: 2012-01-19 00:22:28 作者: rapoo

文章分组统计后的,在的到总行数,为什么有错???
文章分组统计后的,在的到总行数,为什么有错???

select count(*) from (select author,count(*) from articles group by author)


[解决办法]
select count(*) from (select author,count(*) from articles group by author) AS a

读书人网 >SQL Server

热点推荐