作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 HQL(Hibernate 查询语言)在两个表之间创建联合。这个 SQL 脚本在我的 SQL 服务器上运行良好:
SELECT COUNT(DISTINCT linkedin_id) as test, school_name
FROM
(SELECT * FROM alum_education
UNION
SELECT * FROM alum_connection_educations) AS UNIONS where school_name='some string'
问题是,当我尝试像这样在 grails 中运行它时:
def countOfEdu = AlumEducation.executeQuery("select count (distinct linkedinId ) as countOfEdu, schoolName as SchoolName from (SELECT * FROM alumEducation UNION SELECT * FROM alumConnectionEducations) AS UNIONS where schoolName='some string'" )
我收到此错误:
org.hibernate.hql.ast.QuerySyntaxException: unexpected token: ( near line 1, column 83 [select count(distinct linkedinId ) as countOfEdu, schoolName as SchoolName from (SELECT * FROM alumEducation UNION SELECT * FROM alumConnectionEducations) AS UNIONS where schoolName='Duquesne University']
如何在 grails 中运行上面的 SQL 语句?
谢谢杰森
最佳答案
HQL 不支持联合。有一个issue在自 2005 年开放的 Hibernate JIRA 中。
关于hibernate - 如何在HQL中进行Union SQL语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7182433/
我是一名优秀的程序员,十分优秀!