过滤重复值,用sql

最近使用hibernate开发公司内部使用的软件工程管理和代码同步纪录的软件
遇到一个跨7个表查询的功能,查询比较复杂,弃用基于实体查询,转用本地sql查询
  建立一个视图:vw_medcfiles
  视图有depot_path,changlist_no字段
  depot_path有重复值时,取changlist_no最大的纪录。
  后来我用语句:
       select *   from vw_medcfiles v  where  (V.depot_path,v.changelist_no) in (  SELECT t1.depot_path,max(t1.changelist_no) from VW_MEdCFILES t1  GROUP BY t1.depot_path )
过滤掉depot_path字段的重复值。
      性能不敢恭维,但本系统不考虑性能,还没想到更方便的sql语句,不想用存储过程,暂时这样用先

你可能感兴趣的:(sql,Hibernate)