Skip to content
Introduction to SQL
Introduction to SQL
Here you can access the books
table used in the course.
Note: When using sample integrations such as those that contain course data, you have read-only access. You can run queries, but cannot make any changes such as adding, deleting, or modifying the data (e.g., creating tables, views, etc.).
Take Notes
Add notes about the concepts you've learned and SQL cells with queries you want to keep.
SELECT title, release_year,budget,language FROM films WHERE release_year BETWEEN 1990 AND 2000 AND budget > 100000000 -- Amend the query to include Spanish or French-language films AND(language ='spanish' OR language ='French'); Add your notes here
Explore Datasets
Use the books
table to explore the data and practice your skills!
- Select only the
title
column. - Alias the
title
column asbook_title
. - Select the distinct author names from the
author
column. - Select all records from the table and limit your results to 10.