from (From FlightSchedule as a where a.route.routeId=1) as b
上述查询有什么问题? 它给了我这个错误
org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected token: ( near line 1, column 6 [from
(From FlightSchedule as a where a.route.routeId=1) as b]
我试图以不同的方式编写它但不起作用。
我认为内部查询应该评估为一个对象列表,并且第一个from
令牌应该返回相同的内容。
请告诉我我做错了什么?
谢谢。