Get startedGet started for free

Querying the books table

You're ready to practice writing your first SQL queries using the SELECT and FROM keywords. Recall from the video that SELECT is used to choose the fields that will be included in the result set, while FROM is used to pick the table in which the fields are listed.

Feel free to explore books in the exercise.

Your task in this exercise is to practice selecting fields from books.

This exercise is part of the course

Introduction to SQL

View Course

Hands-on interactive exercise

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

-- Return all titles from the books table
___
Edit and Run Code