MySQL supports the LIMIT clause to select a limited number of records, while Transact-SQL for SQL Server and Azure SQL uses TOP.
Below code shows how SQL Server implements the same concept.
SELECT TOP 3 * FROM Customers;
And below code shows how MySQL implements the LIMIT clause to have a limit on the numbers of rows returned.
SELECT * FROM CustomersLIMIT 3;