1. Learn
  2. /
  3. Courses
  4. /
  5. SQL Tutorial for Marketers

Exercise

LIMITing Your Results (1)

In the previous exercises, you saw that you sometimes get back a lot of data. If you only want to return a certain number of results, you can use the LIMIT keyword to limit the number of rows returned, just like in this query:

SELECT *
FROM clients
LIMIT 10;

Instructions

50 XP

Possible answers