What is the Equivalent syntax of mysql “ LIMIT ” clause in SQL Server

前端 未结 3 1585
甜味超标
甜味超标 2021-02-08 11:37

What is the Equivalent syntax of MySQL \" LIMIT \" clause in SQL Server . I would like to use it for doing paging of my results. (want to show records5 to 10 )

3条回答
  •  执笔经年
    2021-02-08 12:04

    cont=until desired number is starting to get results limit=Want to see how many variables

    SELECT TOP (limit) cve_persona FROM persona WHERE (cve_persona > cont)

提交回复
热议问题