Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sybase 12.5 (Sql Anywhere ではなく ASE) では、(ANSI) SQL を使用して N 番目から M 番目の行を取得できますか?
それ以外の場合は、ANSI 以外の方法へのポインターが役立ちますが、見つかりません。
考えられる解決策の1つ:
select rownum=identity(10), t.* into #temp from tablename t select * from #temp where rownum between 5 and 10 drop table #temp
5および10をN番目とM番目の値に置き換えます。
5
10