1. 程式人生 > >面試時的一道SQL題(查詢第30行至40行的資料(其中不可根據id來查,因為id並不一定連續))

面試時的一道SQL題(查詢第30行至40行的資料(其中不可根據id來查,因為id並不一定連續))

這是面試時候的一到題目,當時不會,所以記錄一下:

select top 10 * from tb_donation

where id not in(select top 30 id from tb_donation)

或者:

select top 10 * from

(select top 10 * from

(select top 40 * from tb_donation order by id desc) as li ) as il

order by id asc