Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL SELEZIONE RIGA

Questo è facile con il row_number() funzione finestra:

; with  numbered as
        (
        select  row_number() over (order by [time]) rn
        ,       count(*) over() as cnt
        ,       *
        from    Table1
        )
select  *
from    numbered cur
left join
        numbered prev
on      cur.rn = prev.rn + 1
left join
        numbered next
on      cur.rn = next.rn - 1
where   cur.rn in (1, cur.cnt) -- first or last row
        or (cur.id = 'start' and prev.id = 'stop') -- start after stop
order by
        cur.rn

Esempio live su SQL Fiddle.

Non che l'output di esempio non soddisfi i tuoi requisiti. Include diverse righe che non corrispondono a nessuno dei tre criteri (prima riga, ultima riga, inizio dopo fine.)