程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> unexpected token: null near line 1, column 290,unexpectedtoken

unexpected token: null near line 1, column 290,unexpectedtoken

編輯:JAVA綜合教程

unexpected token: null near line 1, column 290,unexpectedtoken


org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected token: null near line 1, column 290 [select count(*) from cn.com.taiji.sample.entity.User t where 1=1 and (t.name like :userName or t.namePy like :userName or t.loginName like :userName and t.status =:status and not exists(select b.user from cn.com.sample.entity.UserRole b where b.role.id =:roleId and b.user.id = t.id)]

這是我報的錯誤,報錯的原因屬於語法格式的錯誤,整個HQL語句也在這裡,結合網上查找的解決辦法,總結如下:

1、多余的空格;

2、字符串引號應該為單引號;

3、=:應該是在一起的,中間沒有空格,‘like :’中介需要有空格,其實這裡沒這麼嚴謹,只是以防萬一;

4、括號,我出的問題就是左括號比右括號多了一個;

可能還有其他原因,希望對大家有幫助!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved