Get startedGet started for free

Limiting results

Let's take a look at a few of the genres represented in our library's books.

Recall that limiting results is useful when testing code since result sets can have thousands of results! Queries are often written with a LIMIT of just a few records to test out code before selecting thousands of results from the database.

Let's practice with LIMIT!

This exercise is part of the course

Introduction to SQL

View Course

Exercise instructions

  • Using PostgreSQL, select the genre field from the books table; limit the number of results to 10.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Select the first 10 genres from books using PostgreSQL
___
Edit and Run Code