0

使用 SQL Server 2000

表格1

id date time

001 01/02/2012 02:00
001 02/02/2012 01:00
001 07/02/2012 08:00
002 04/02/2012 01:00
002 15/02/2012 06:00
...

从 table1 我想按日期列获取每个 id order by date 的第二条记录

预期产出

id date time

001 02/02/2012 01:00
001 07/02/2012 08:00
002 15/02/2012 06:00
...

如何查询以获取第二条记录。

需要sql查询帮助

4

3 回答 3

3

像这样的东西怎么样

SELECT  yt.*
FROM    your_table yt INNER JOIN
        (
            SELECT  [id],
                    MIN([datetime]) first_datetime
            FROM    your_table
            GROUP BY    [id]
        ) f ON  yt.id = f.id
            AND yt. [datetime] > f.first_datetime

假设第一条记录是每个 ID 的最短日期。

于 2012-08-27T04:58:07.207 回答
0

查看数据似乎不是按时间排序的,因此会使事情变得有些复杂。我没有 SQL Server 2000 来尝试这个,所以我会尝试对每一行进行注释,以便您了解并纠正任何错误:

创建一个带有标识列的新临时表

create #tmp (MYNEWID int identity, id int, dt datetime)

从您的表中插入记录

insert into #tmp select id, dt from table1

获取除第一个 id 之外的所有记录:

select id, dt 
from #tmp T 
where cast(T.id as varchar)+cast(T.dt as varchar) not in 
    (select top 1 cast(X.id as varchar)+cast(X.dt as varchar) 
    from #tmp X 
    where T.id=X.id 
    order by MYNEWID asc)

如果存在重复的 dt,则以下代码将无法按预期工作

于 2012-08-27T05:11:26.827 回答
0
select t1.* from table1 t1 left join 
(select top 1 * from table1) t2
on t1.id=t2.id and t1.date=t2.date and t1.time=t2.time
where t2.id is null and t2.date is null and t2.time is null
于 2012-08-27T06:51:02.293 回答