Course Content
Introduction to SQL
Introduction to SQL
Challenge: Find all Book Titles
From the Books
Table, you want to create a quick list that only shows the titles of the books — no authors, publication dates, or genres — just the titles, so people can quickly browse what's available.
Swipe to show code editor
Use a SELECT
statement to retrieve only the Title
column from the Books
table, displaying a list of all book titles.
Solution
Thanks for your feedback!
Challenge: Find all Book Titles
From the Books
Table, you want to create a quick list that only shows the titles of the books — no authors, publication dates, or genres — just the titles, so people can quickly browse what's available.
Swipe to show code editor
Use a SELECT
statement to retrieve only the Title
column from the Books
table, displaying a list of all book titles.
Solution
Thanks for your feedback!