文章分组统计后的,在的到总行数,为什么有错???
文章分组统计后的,在的到总行数,为什么有错???
select count(*) from (select author,count(*) from articles group by author)
[解决办法]
select count(*) from (select author,count(*) from articles group by author) AS a
发布时间: 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