我想知道 MySQL 中 TOP 关键字的替代方法.我已经阅读了 SQL Server 中的 TOP.
I want to know the alternative of the TOP keyword as in MySQL. I have read about TOP in SQL Server.
在 MySQL 中是否有任何替代方法,或在 MySQL 中我们可以从中获得相同功能的任何其他方法?
Is there any alternative to this in MySQL, or any other method in MySQL from which we can get same functionality?
排序和限制结果:
SELECT field1, field2
FROM myTable
ORDER BY field1 ASC
LIMIT 10
这篇关于MySQL 中是否有 TOP 的替代方案?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!