We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Welcome to Learn SQL

SQL (Structured Query Language) is the language we use to talk to databases. PostgreSQL, MySQL, SQLite, and most other databases that store data in tables all speak it.

In this course, you'll learn SQL by working on the database for a make-believe PayPal-clone called CashPal! You'll write queries that interact with users, transactions, payouts, and more.

Assignment

The code on the right is a simple query that returns (selects) all the rows and columns from a "people" table – but there's a problem! The table is actually named users, not people!

Fix the bug by changing "people" to "users" in the query, then submit your answer.