Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 2.4.1 eclipse 链接和 oracle。 本文档列出了几个运算符,可以在编写查询时使用。还有一个例子。我想使用 dateDifference 函数。在哪里可以找到使用这些运算符时要传递的参数的详细信息。一些示例代码会很棒。
API 的最佳来源是 Expression 类
http://www.eclipse.org/eclipselink/api/2.5/org/eclipse/persistence/expressions/Expression.html#dateDifference%28java.lang.String,%20java.util.Date%29
IE
SELECT e FROM Employee e WHERE OPERATOR('DateDifference ', e.startDate, 'year', e.endDate) > 10
您还可以使用 SQL() 操作。