0

我正在尝试根据 Sybase ASE 中的当前日期创建一个结果集。我不明白该怎么做。

select x,date1 from abc where x>y order by date1> current_date

如何在 orderby 子句中使用当前日期?

4

2 回答 2

1

不清楚,但我想你想做一些像下面的查询

  SELECT X,date1 from abc 
    where x>y 
    and date1 >current_Date --can use getdate() for current date 
    order by date1
于 2013-02-14T09:19:55.850 回答
0

我的错误,我的要求错误。只需按 Desc 或 asc 进行排序,然后处理数据是有意义的。有时,当我太忙时,我往往会忘记一些基本的事情。谢谢大家的回复。

于 2013-02-19T13:19:50.243 回答