选择具有最大值 createdDateTime ax2012 的记录

choose record which have max value of createdDateTime ax2012

我正在写 select 声明,

我想选择 createdDateTime 值最近的记录。

例如

我想选择第二行,因为它有最大值。

如何在我的 select 语句中添加此条件?

请检查以下示例:

Table   table;
;

select firstOnly table
    order by table.createdDateTime desc;

Select Statement Syntax