hibernate hql 语句去除重复数据

我用了selectdistinctcarfrom表名car,没有去除重复数据,有没有更好的方法... 我用了select distinct car from 表名 car ,没有去除重复数据,有没有更好的方法 展开
 我来答
fly勇敢的心120
推荐于2016-12-04 · TA获得超过2.1万个赞
知道大有可为答主
回答量:6968
采纳率:76%
帮助的人:518万
展开全部
参考如下:

/**
* 功能:根据品牌查询
*
* @param pageSize
* 每页大小
* @param currentLPagem
* 当前第几页
* @param productBlack
* 产品品牌
* @param productBlackItem
* 产品分类
* @param productSize
* 产品尺码
* @param keyWord
* 搜索关键字
* @return
*/
public pageBean seachProductByBrank(int pageSize, int currentLPage,
String product_Brank, String product_itemName) {
// final String hql = "from " + OgrilProducts.class.getName()
// + " where product_Brank='" + product_Brank
// + "' and product_itemName='" + product_itemName
// + "' order by product_registerDate desc";
final String hql = " from "
+ OgrilProducts.class.getName()
+ " as product where product.productItemName='"
+ product_itemName
+ "' and productBrank='"
+ product_Brank
+ "' and not exists( from "
+ OgrilProducts.class.getName()
+ " where productItemName='"
+ product_itemName
+ "' and productBrank='"
+ product_Brank
+ "' and productItemNumber=product.productItemNumber and productId<product.productId )";
int allRow = this.getAllRowCount(hql);// 总记录数
int totalPage = pageBean.countTotalpage(pageSize, allRow);// 总页数
final int offset = pageBean.countOffset(pageSize, currentLPage);// 当前页开始记录
final int length = pageSize;
final int currentPage = pageBean.countCurrentPage(currentLPage);
List list = this.queryForPage(hql, offset, length);// 记录
// 把分页信息保存到Bean中
pageBean pagebean = new pageBean();
pagebean.setPageSize(pageSize);
pagebean.setCurrentPage(currentPage);
pagebean.setAllRow(allRow);
pagebean.setTotalPage(totalPage);
pagebean.setList(list);
return pagebean;
}
带我信乐
2011-06-19 · TA获得超过1353个赞
知道小有建树答主
回答量:680
采纳率:0%
帮助的人:709万
展开全部
你这不是去除重复数据了吗?
distinct 本身就是一种去重复方法
也可以使用GROUP BY
--只获取分组为一条数据数据
SELECT car
FROM car
GROUP BY car
HAVING COUNT(car)=1
很明显GROUY BY 灵活度更高
希望对你有帮助
更多追问追答
追问
你的SELECT car  
FROM car
GROUP BY car
HAVING COUNT(car)=1在hql里执行报错,能行吗
追答
我这里个SQLSERVER的写法 应该是通用的啊 这个语法很标准
报了什么错。。。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
守护翼小宝
2011-06-22 · TA获得超过122个赞
知道小有建树答主
回答量:294
采纳率:0%
帮助的人:164万
展开全部
是要把重复了的数据 不现实 只显示不重复的数据吗??
追问
当然
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ahyyxx222
2011-06-19 · TA获得超过2532个赞
知道小有建树答主
回答量:1405
采纳率:33%
帮助的人:1193万
展开全部
哪个字段重复?
distinct是加在字段名上的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式