Making sense of 'OFFSET/FETCH' in SSMS 2012

ぐ巨炮叔叔 提交于 2019-12-07 09:52:29

Are you positive you are connected to a SQL Server 2012 database? The following works:

Select Name, CatCount
From CatLadies
Order By Name
Offset 2 Rows 
Fetch Next 2 Rows Only

SQL Fiddle version

I do get the error you are seeing when I switch to SQL Server 2008

SQL Fiddle using SQL Server 2008

Make sure your database compatibility level is set to SQL Server 2012 (110).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!