Is there an alternative to TOP in MySQL?

前端 未结 5 2173
慢半拍i
慢半拍i 2020-11-28 15:19

I want to know the alternative of the TOP keyword as in MySQL. I have read about TOP in SQL Server.

Is there any alternative to this in MySQL, or any other method i

5条回答
  •  执笔经年
    2020-11-28 15:43

    Ordering and limiting the results:

    SELECT field1, field2
    FROM myTable
    ORDER BY field1 ASC
    LIMIT 10
    

提交回复
热议问题