请原谅我提前说了英语。我有以下数据:我需要得到最大的进程 OP 给定列中的列 Start_date .应该是这样的:我不能得到,任何帮助都将不胜感激
OP
Start_date
vom3gejh1#
toad经常与oracle一起使用,所以我将使用oracle语法。您可以适应其他数据库。关键是从中提取日期 start_date .
start_date
select t.* from (select t.*, row_number() over (partition by trunc(start_date) order by start_date desc) as seqnum from t ) t where seqnum = 1;
1条答案
按热度按时间vom3gejh1#
toad经常与oracle一起使用,所以我将使用oracle语法。您可以适应其他数据库。关键是从中提取日期
start_date
.