+ 1
Hi! If you want to select a datermined number of rows you can use limit as follows:
SELECT columns FROM table_name limit number_rows;
For example, if we have a table called article and we want to select the name and the brand of 5 articles we will write the following query:
SELECT name, brand FROM article limit 5;