Hibernate,多个查询位置

时间:2017-08-14 09:44:20

标签: java spring hibernate

Query query = session.createQuery("from Stock where stockCode = :code ");

假设我想查询2列,一列stockCode,另一列stockSample,我如何使用此ORM映射实现此目的?

2 个答案:

答案 0 :(得分:0)

这与普通SQL非常相似:

from Stock where stockCode = :code and stockSample = :sample

答案 1 :(得分:0)

你不需要多个where语句你必须使用逻辑运算符,例如AND或OR等。 例:-  你想从stockcode和stockSample那么你可以使用AND运算符

  

from Stock where stockCode = :code and stockSample = :code