mysql of limit of the first few record statements

  • 2020-05-09 19:26:31
  • OfStack

MySql does not provide the top method. But he has the limit method that provides the same functionality.

SELECT * FROM `tfidf` order by weight desc limit 1, 10830

SELECT * FROM `tfidf` order by weight desc limit 10


Related articles: