0

我有一个休眠查询要检查学生的别名(用户名)是唯一的,这工作得很好这是我的代码。

public Boolean isAliasUniqueInStudent(String alias) 
{        
    Session session = getHibernateTemplate().getSessionFactory().openSession();        
    ProjectionList p = Projections.projectionList().add(Projections.rowCount());
    org.hibernate.criterion.Conjunction exist=(Conjunction)Restrictions.conjunction().add(Restrictions.isNotNull("username")).add(Restrictions.eq("username",alias));
    Criteria criteria = session().createCriteria(Student.class).setProjection(p).add(exist);               
    Long result=(Long)criteria.uniqueResult();
    closeSession(session);
    return result.intValue()==0;
}

这是创建这样的选择。

select count(*) as y0_ from student this_ where (this_.username is not null and this_.username=?)

这很好,但我想知道是否可以尝试选择

select count(username) as y0_ from student this_ where (this_.username is not null and this_.username=?)

这是比我更好的方法吗?

存在更好的吗?

我知道我正在检查属性不为空..但这是否可以用休眠来完成。

select count(name)

多谢。

4

1 回答 1

0

你试过这个吗?

Projections.projectionList().add(Projections.count("username");
于 2013-09-09T09:04:35.157 回答