SQL Server rownumbering and filtered results

后端 未结 3 704
死守一世寂寞
死守一世寂寞 2021-01-14 03:21

I have an application in which I need to display \"pages\" of data in a list. The basic idea is fairly common. The display shows a list of items and at the bottom of the dis

3条回答
  •  粉色の甜心
    2021-01-14 03:43

    First of all try to use the proc instead of view and as users are asking you to have so much filtering then proc is only solution you got.Inside proc filter the data using all these filters and then generate the row_number and then show say first 100 records or like that.

提交回复
热议问题