S
soho
Unregistered / Unconfirmed
GUEST, unregistred user!
select top 20 * from table1
where a1 not in
(select a1 from
(select top 10 * from table1)
)
这里假设字段a1为表table1的值唯一的字段
where a1 not in
(select a1 from
(select top 10 * from table1)
)
这里假设字段a1为表table1的值唯一的字段