0

在休眠中执行此查询时出现“org.hibernate.hql.ast.QuerySyntaxException:意外令牌:在第 1 行,第 132 列附近打开”的错误。任何人都可以帮助我了解我的代码如何使用 ON 进行休眠。

Session session  = (Session) em1.getDelegate();

org.hibernate.Query q=session.createQuery("UPDATE sc_ob_temp_audit set export_flag ='Y' WHERE audit_id IN(select a.audit_id FROM sc_ob_temp_audit a JOIN sc_ob_allocation b  ON a.sc_ob_profile_code = b.sc_ob_profile_code AND a.sc_orig_country= b.sc_orig_country LEFT OUTER JOIN sc_fac_group f ON   b.sc_orig_country = f.sc_orig_country AND b.sc_orig_sf_group_code = f.sc_fac_group_code LEFT OUTER JOIN (SELECT e.gp_cnt_cd,d.sc_prod_cont_code,d.sc_prod_group_code,d.sc_orig_country, e.gp_cd FROM sc_ob_prod_group d LEFT OUTER JOIN gbl_product e ON d.sc_prod_cont_code = e. gp_cnt_cd)de ON b.sc_orig_country = de.sc_orig_country AND b.sc_prod_cont_group_code=de.sc_prod_group_code WHERE a.sc_orig_country=:countryCd AND a.export_flag= 'N')");

q.setParameter("countryCd", country.trim());

q.executeUpdate();
4

3 回答 3

1

您正在尝试执行 SQL 查询 - 为此,您必须改用SQLQuery对象。要获取一个SQLQuery对象,只需调用session.createSqlQuery

另一方面——如果你只是写 SQL 语句,为什么还要使用 Hibernate?你映射sc_ob_temp_audit表了吗?

于 2013-02-19T10:33:38.523 回答
0

您需要先了解有关 HQL 语法的更多信息。

也可以看看:

于 2013-02-19T10:44:46.537 回答
0

查看您的查询后,它似乎不是 hql。它看起来像一个 sql 查询。使用 session.createSqlSquery 代替 session.createQuery。

于 2013-02-19T10:35:09.140 回答