mysql limit results to 10

Solutions on MaxInterview for mysql limit results to 10 by the best coders in the world

showing results for - "mysql limit results to 10"
Emanuele
02 Mar 2020
1SELECT 
2    customerNumber, 
3    customerName, 
4    creditLimit
5FROM
6    customers
7ORDER BY creditLimit DESC
8LIMIT 10;