In SQL Server, we can use the TOP keyword to return the first 10 rows of the table. Here is an example to return the first 10 rows:
SELECT TOP 10 *
FROM table_name;
In MySQL, we can use the LIMIT keyword to return the first 10 rows of the table:
SELECT * FROM Table_Name
LIMIT 10;
I recommend this SQL training course by Intellipaat to become an expert in SQL.