You can limit the amount of rows you receive in the results by using the LIMIT clauseAt the end of the query, simply writeLIMIT where is the amount of rows you want to limit the output to.for exampleselect * from productsLIMIT 10would only show 10 products from the products table