hibernate查询总记录数
有一张进货表,现在要统计出一季度每个月5种不同商品的进度数量,怎么使用hibernate查询来获得数据?数据量不定,表记录比较大(数W条的样子)。自己想了2个方案,一是查...
有一张进货表,现在要统计出一季度每个月5种不同商品的进度数量,怎么使用hibernate查询来获得数据?数据量不定,表记录比较大(数W条的样子)。自己想了2个方案,一是查询数据库获取数据,一是拿出一季度的全部记录用循环统计出数据,但是效率上貌似低了点,请高手指教有没有更好的办法来统计数量?
梦巜人生 的回答是我的第一种方案的类似方案,而且有解决资源消耗大的问题 展开
梦巜人生 的回答是我的第一种方案的类似方案,而且有解决资源消耗大的问题 展开
2个回答
展开全部
你可以把你这个表再给描述的清楚点么?进度数量是什么是五种商品的各自的总数量么?
select (select count(*) from table where kind=a)as a,
(select count(*) from table where kind=b)as b,
(select count(*) from table where kind=c)as c,
(select count(*) from table where kind=d)as d,
(select count(*) from table where kind=e)as e
from table
select (select count(*) from table where kind=a)as a,
(select count(*) from table where kind=b)as b,
(select count(*) from table where kind=c)as c,
(select count(*) from table where kind=d)as d,
(select count(*) from table where kind=e)as e
from table
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
部分代码:
String hql="select * from table where ……";
List list=query.list();
int count=(Integer)list.get(0);//总记录数
==========补充
不好意思,写错了 是select count(*) from table where ……"; 绝对是不能String hql="select * from table where ……";这么写的,这么写就是吧整张表的数据放入query中,像你几十万条数据马上就内存溢出
String hql="select * from table where ……";
List list=query.list();
int count=(Integer)list.get(0);//总记录数
==========补充
不好意思,写错了 是select count(*) from table where ……"; 绝对是不能String hql="select * from table where ……";这么写的,这么写就是吧整张表的数据放入query中,像你几十万条数据马上就内存溢出
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询