Bilgiler > MS Sql Bir sorgudan istenilen satırı almak
MS Sql Bir sorgudan istenilen satırı almak
WITH NthRow AS
(
SELECT
ROW_NUMBER() OVER (ORDER BY id) AS RNum
, *
FROM isletme where ogretmen_no=40142
)
SELECT * FROM NthRow WHERE RNum = 2
Kaynak:https://stackoverflow.com/ques...ql-server-table
***