r: #000000">,'country_xxx','note_xxx')
23
set @i=@i+1
24
end
25
26
set identity_insert testtable off
27
28
29
30
-------------------------------------
31
32
分页方案一:(利用not in和select top分页)
33
语句形式:
34
select top 10 *
35
from testtable
36
where (id not in
37
(select top 20 id
38