mysql查询总数是在查询中进行统计还是单独统计好
比如查找一个类的文章1、selectid,title,introfromt_articlewheretype=1;先找该类文章然后selectcount(id)fromt...
比如查找一个类的文章
1、select id,title,intro from t_article where type=1; 先找该类文章 然后 select count(id) from table where type=1
2、select id,title,intro,count(id) as num from t_article where type=1; 展开
1、select id,title,intro from t_article where type=1; 先找该类文章 然后 select count(id) from table where type=1
2、select id,title,intro,count(id) as num from t_article where type=1; 展开
2个回答
展开全部
我看你的意思是既想查询数据又想统计,你不想想第二句,id和title不一定是一条数据,但是count(id)肯定是一条数据,这里要分组(在其他数据库直接报错,mysql算温柔的)见楼下,id和title相同的数据就会合并。你查数据就是为了用吧?!直接查所有数据select * from ,完了用mysql_num_rows(php的),其他不清楚,就得到了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |