獲取數據,我想寫一個HQL因爲這樣HQL查詢從表中
Select * from tableName where columnName= null or columnName=0
由於我是新來這個,請幫我出
獲取數據,我想寫一個HQL因爲這樣HQL查詢從表中
Select * from tableName where columnName= null or columnName=0
由於我是新來這個,請幫我出
你可以嘗試這樣的事情。
select column1, column2,....
from tableName
where (columnName = null or columnName = 0)
下面有一些有用的教程:
http://www.tutorialspoint.com/hibernate/hibernate_query_language.htm http://www.roseindia.net/hibernate/index.shtml http://dev.wavemaker.com/wiki/bin/Dev/HqlTutorial#HHQLWHEREClause
可以簡單的寫
FROM PojoName pojo WHERE pojo.property is null or pojo.property=0
Hibernate文檔是在這裏http://www.hibernate.org /文檔 – maggu 2013-04-23 05:51:18