【发布时间】:2014-01-09 08:56:52
【问题描述】:
我在使用 MySQL 查询时遇到问题,其中我得到一个 LIMIT 1 的行。但是当将它与 order by 一起使用时它不起作用。
在 mysql 工作台中运行的查询如下:
select * from train t
where t.togId = 1125
and t.tilDato >= '2013-12-20'
order by t.fraDato LIMIT 1;
但是,当我通过 javacode 运行它并在我的服务器上得到这个堆栈跟踪时:
Exception Description:
Syntax error parsing [select t from train t where t.togId = :togId
and t.tilDato >= :todaysdate order by t.fraDato LIMIT 1].
[102, 103] The ORDER BY clause has 't.fraDato ' and 'LIMIT '
that are not separated by a comma.
[108, 109] The ORDER BY clause has 'LIMIT ' and '1' that are not separated by a comma.
查询是这样创建的:
Query query = em.createQuery("select t from train t where t.togId = :togId" +
" and t.tilDato >= :todaysdate order by t.fraDato LIMIT 1")
.setParameter("togId", togId)
.setParameter("todaysdate", new Date());
【问题讨论】:
-
用
select *替换select t -
也可以
SELECT t.*. -
在您的工作台查询中选择 *.您的 java 代码已选择 t。除非您的火车表有一个名为 t 的列,否则您将收到某种错误。