I tested it in two ways, but I did not succeed.
select * from table OFFSET 10 ROWS
select top 10 * from table OFFSET 10 ROWS FETCH NEXT 5 ROWS ONLY
Strangely enough I've never needed to use offset in this version of SQLServer, and now I'm having trouble with something relatively simple.
Errors displayed on console:
Message 102, Level 15, State 1, Line 3
Incorrect syntax near 'OFFSET'.
Message 153, Level 15, State 2, Line 3
Invalid usage of the NEXT option in the FETCH statement.
I may be wrong, but I confess that I did not find answers on the site that really answered my question (which is curious, since it is relatively simple).