Where can I find a list of all HQL keywords?
In the full Hibernate source download there's a grammar\hql.g
file, which is the ANTLR language definition. You can view the latest version of this file from the official GitHub source repository here.
In the tokens
section you'll find all the tokens, including the keywords (they're the ones defined as strings, e.g. ALL="all"
).