SQL Knowledge Center · About ·
Easy Interactive Online SQL Training for Beginners

SQL SELECT specific columns Tutorial - Interactive Database Query Lesson

Lesson 2 of 31

SELECT specific columns

Interactive SQL Tutorial

SELECT * grabs all fields (called columns) in a table. If we only wanted to see the name and num_books_read columns, we would type
SELECT name, num_books_read FROM family_members;.

Can you return just the name and species columns?

SQL:

Query Result:

Available Tables: