Problems / Simple Select / Editorial
This is the most fundamental SQL operation: choosing which columns to return.
first_name
last_name
major
The key lesson is that SELECT * returns every column, but specifying column names gives you only what you need — a best practice for performance and clarity.
SELECT *
Solve Simple Select yourself →